forked from ebhomengo/niki
28 lines
809 B
Go
28 lines
809 B
Go
|
package adminkindboxservice
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
paginationparam "git.gocasts.ir/ebhomengo/niki/param"
|
||
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box"
|
||
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||
|
)
|
||
|
|
||
|
func (s Service) GetAll(ctx context.Context, req param.KindBoxGetAllRequest) (param.KindBoxGetAllResponse, error) {
|
||
|
const op = "adminkindboxservice.GetAll"
|
||
|
|
||
|
allKindBox, total, err := s.repo.GetAllKindBox(ctx, req.Filter, req.Pagination, req.Sort)
|
||
|
if err != nil {
|
||
|
return param.KindBoxGetAllResponse{}, richerror.New(op).WithErr(err)
|
||
|
}
|
||
|
|
||
|
return param.KindBoxGetAllResponse{
|
||
|
AllKindBox: allKindBox,
|
||
|
Pagination: paginationparam.PaginationResponse{
|
||
|
PageSize: req.Pagination.GetPageSize(),
|
||
|
PageNumber: req.Pagination.GetPageNumber(),
|
||
|
Total: total,
|
||
|
},
|
||
|
}, nil
|
||
|
}
|