forked from ebhomengo/niki
27 lines
766 B
Go
27 lines
766 B
Go
package benefactor
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
param "git.gocasts.ir/ebhomengo/niki/param/admin/admin"
|
|
)
|
|
|
|
type Repository interface {
|
|
GetByID(ctx context.Context, benefactorID uint) (entity.Benefactor, error)
|
|
IsExistBenefactorByID(ctx context.Context, id uint) (bool, error)
|
|
GetAddressByID(ctx context.Context, id uint) (*entity.Address, error)
|
|
}
|
|
type ForAdminSvc interface {
|
|
BenefactorExistByID(ctx context.Context, request param.BenefactorExistByIDRequest) (param.BenefactorExistByIDResponse, error)
|
|
AddressExistByID(ctx context.Context, request param.GetAddressByIDRequest) (param.GetAddressByIDResponse, error)
|
|
}
|
|
|
|
type Service struct {
|
|
repo Repository
|
|
}
|
|
|
|
func New(repo Repository) Service {
|
|
return Service{repo: repo}
|
|
}
|