niki/service/benefactor/benefactor/get.go

31 lines
1014 B
Go

package benefactorservice
import (
"context"
param "git.gocasts.ir/ebhomengo/niki/param/benefactor/benefactor"
richerror "git.gocasts.ir/ebhomengo/niki/pkg/rich_error"
)
func (s Service) BenefactorExistByID(ctx context.Context, req param.BenefactorExistByIDRequest) (param.BenefactorExistByIDResponse, error) {
const op = "benefactorservice.BenefactorExistByID"
isExisted, err := s.repo.IsExistBenefactorByID(ctx, req.ID)
if err != nil {
return param.BenefactorExistByIDResponse{}, richerror.New(op).WithErr(err).WithKind(richerror.KindUnexpected)
}
return param.BenefactorExistByIDResponse{Existed: isExisted}, nil
}
func (s Service) GetByID(ctx context.Context, req param.GetBenefactorByIDRequest) (param.GetBenefactorByIDResponse, error) {
const op = "benefactorservice.GetByID"
bnf, gErr := s.repo.GetByID(ctx, req.BenefactorID)
if gErr != nil {
return param.GetBenefactorByIDResponse{}, richerror.New(op).WithErr(gErr)
}
return param.GetBenefactorByIDResponse{Benefactor: bnf}, nil
}