2024-01-02 14:04:16 +00:00
|
|
|
package benefactorkindboxreqservice
|
2024-02-19 13:45:55 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
param "git.gocasts.ir/ebhomengo/niki/param/benefactor/kind_box_req"
|
|
|
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s Service) Get(ctx context.Context, req param.KindBoxReqGetRequest) (param.KindBoxReqGetResponse, error) {
|
|
|
|
const op = "userkindboxreqservice.Get"
|
|
|
|
|
|
|
|
kindBoxReq, err := s.repo.GetKindBoxReqByID(ctx, req.KindBoxReqID, req.BenefactorID)
|
|
|
|
if err != nil {
|
2024-04-26 21:37:01 +00:00
|
|
|
return param.KindBoxReqGetResponse{}, richerror.New(op).WithErr(err)
|
2024-02-19 13:45:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return param.KindBoxReqGetResponse{KindBoxReq: kindBoxReq}, nil
|
|
|
|
}
|