forked from ebhomengo/niki
17 lines
611 B
Go
17 lines
611 B
Go
|
package benefactorkindboxreqservice
|
||
|
|
||
|
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) Delete(ctx context.Context, req param.KindBoxReqDeleteRequest) (param.KindBoxReqDeleteResponse, error) {
|
||
|
const op = richerror.Op("benefactorkindboxreqservice.Delete")
|
||
|
dErr := s.repo.DeleteKindBoxReqByID(ctx, req.KindBoxReqID)
|
||
|
if dErr != nil {
|
||
|
return param.KindBoxReqDeleteResponse{}, richerror.New(op).WithErr(dErr).WithKind(richerror.KindUnexpected)
|
||
|
}
|
||
|
return param.KindBoxReqDeleteResponse{}, nil
|
||
|
}
|