forked from ebhomengo/niki
16 lines
485 B
Go
16 lines
485 B
Go
package kindboxservice
|
|
|
|
import (
|
|
param "git.gocasts.ir/ebhomengo/niki/param/kind_box"
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
)
|
|
|
|
func (s Service) GetAll() (param.KindBoxGetAllResponse, error) {
|
|
const op = "kindboxservice.GetAll"
|
|
allKindBox, err := s.repo.GetAllKindBox()
|
|
if err != nil {
|
|
return param.KindBoxGetAllResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
|
|
}
|
|
return param.KindBoxGetAllResponse{AllKindBox: allKindBox}, nil
|
|
}
|