public ServiceGroupService(IServiceGroupRepository serviceGroupRepository, IUnitOfWork unitOfWork)
 {
     this._serviceGroupRepository = serviceGroupRepository;
     this._unitOfWork             = unitOfWork;
 }
 public ServiceGroupManager(IServiceGroupRepository servicegrouprepository)
 {
     _servicegrouprepository = servicegrouprepository;
 }
示例#3
0
 public ServiceGroupServiceImpl(IServiceGroupRepository serviceGroupRepo, IMapper mapper)
 {
     this._mapper           = mapper;
     this._serviceGroupRepo = serviceGroupRepo;
 }
 public ServiceGroupOperations(IServiceGroupRepository servicegroup)
 {
     _servicegrouprepo = servicegroup;
 }
 public ServiceGroupApplication(IServiceGroupRepository serviceGroupRepository, IServiceGroupDomainService serviceGroupDomainService)
 {
     _serviceGroupRepository    = serviceGroupRepository;
     _serviceGroupDomainService = serviceGroupDomainService;
 }