2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxreqservice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2023-12-26 17:52:20 +00:00
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req"
|
2023-12-25 17:08:19 +00:00
|
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s Service) Get(ctx context.Context, req param.KindBoxReqGetRequest) (param.KindBoxReqGetResponse, error) {
|
|
|
|
const op = "adminkindboxreqservice.Get"
|
2023-12-26 13:11:29 +00:00
|
|
|
|
2023-12-26 20:01:45 +00:00
|
|
|
// TODO : ref to service.Update()
|
2023-12-25 17:08:19 +00:00
|
|
|
kindBoxReq, err := s.repo.GetKindBoxReq(ctx, req.KindBoxReqID)
|
|
|
|
if err != nil {
|
|
|
|
return param.KindBoxReqGetResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
|
|
|
|
}
|
|
|
|
|
|
|
|
return param.KindBoxReqGetResponse{KindBoxReq: kindBoxReq}, nil
|
|
|
|
}
|