25 lines
594 B
Go
25 lines
594 B
Go
package service
|
|
|
|
import (
|
|
"bitbucket.org/nemt/nemt-portal-api/domain/entity"
|
|
)
|
|
|
|
// userService is the domain service for user operations
|
|
type zipcodeService struct {
|
|
svc *Service
|
|
}
|
|
|
|
// newUserService returns an instance of userService
|
|
func newZipcodeService(svc *Service) *zipcodeService {
|
|
return &zipcodeService{
|
|
svc: svc,
|
|
}
|
|
}
|
|
|
|
func (s *zipcodeService) GetAll() ([]entity.Zipcode, error) {
|
|
return s.svc.db.Zipcodes().GetAll()
|
|
}
|
|
|
|
func (s *zipcodeService) GetByParticipatingZipcode(zipcode string) (entity.Zipcode, error) {
|
|
return s.svc.db.Zipcodes().GetByParticipatingZipcode(zipcode)
|
|
} |