forked from ebhomengo/niki
18 lines
640 B
Go
18 lines
640 B
Go
package adminkindboxreqservice
|
|
|
|
// func (s Service) Add(ctx context.Context, req param.KindBoxReqAddRequest) (param.KindBoxReqAddResponse, error) {
|
|
// const op = "adminkindboxreqservice.Add"
|
|
//
|
|
// kindBoxReq, err := s.repo.AddKindBoxReq(ctx, entity.KindBoxReq{
|
|
// BenefactorID: req.BenefactorID,
|
|
// KindBoxType: req.TypeID,
|
|
// CountRequested: req.CountRequested,
|
|
// Status: entity.KindBoxReqPendingStatus,
|
|
// })
|
|
// if err != nil {
|
|
// return param.KindBoxReqAddResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
|
|
// }
|
|
//
|
|
// return param.KindBoxReqAddResponse{KindBoxReq: kindBoxReq}, nil
|
|
//}
|