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, req param.KindBoxReqGetRequest) (param.KindBoxReqGetResponse, error) {
//	const op = "adminkindboxreqservice.Get"
//
//	// TODO : ref to service.Update()
//	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
//}