forked from ebhomengo/niki
21 lines
643 B
Go
21 lines
643 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) Delete(ctx context.Context, req param.KindBoxReqDeleteRequest) (param.KindBoxReqDeleteResponse, error) {
|
|
// TODO: Does business domain need to delete an kindboxreq ?
|
|
const op = "adminkindboxreqservice.Delete"
|
|
|
|
dErr := s.repo.DeleteKindBoxReq(ctx, req.KindBoxReqID)
|
|
if dErr != nil {
|
|
return param.KindBoxReqDeleteResponse{}, richerror.New(op).WithErr(dErr).WithKind(richerror.KindUnexpected)
|
|
}
|
|
|
|
return param.KindBoxReqDeleteResponse{}, nil
|
|
}
|