2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxreqservice
|
2024-02-03 04:56:27 +00:00
|
|
|
|
|
|
|
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.KindBoxReqGetAllRequest) (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
|
|
|
|
}
|