package adminkindboxreqservice import ( "context" param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req" richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error" ) // TODO: Pagination, Filters, Sort. func (s Service) GetAll(ctx context.Context) (param.KindBoxReqGetAllResponse, error) { const op = "adminkindboxreqservice.GetAll" allKindBoxReq, err := s.repo.GetAllKindBoxReq(ctx) if err != nil { return param.KindBoxReqGetAllResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected) } return param.KindBoxReqGetAllResponse{AllKindBoxReq: allKindBoxReq}, nil }