forked from ebhomengo/niki
22 lines
561 B
Go
22 lines
561 B
Go
|
package adminkindboxreqservice
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/kind_box_req"
|
||
|
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
|
||
|
)
|
||
|
|
||
|
func (s Service) Get(ctx context.Context, request param.GetKindBoxReqRequest) (param.GetKindBoxReqResponse, error) {
|
||
|
const op = "adminkindboxreqservice.Get"
|
||
|
|
||
|
kindBoxReq, err := s.repo.GetByID(ctx, request.KindBoxID)
|
||
|
if err != nil {
|
||
|
return param.GetKindBoxReqResponse{}, richerror.New(op).WithErr(err)
|
||
|
}
|
||
|
|
||
|
return param.GetKindBoxReqResponse{
|
||
|
KindBoxReq: kindBoxReq,
|
||
|
}, nil
|
||
|
}
|