public SIMCardRequestService(ISIMCardRequestRepository simCardRequestRepository,
                              IEmployeeRepository employeeRepository,
                              ISuccessFactorRepository successFactorRepository,
                              IUnitOfWork unitOfWork,
                              IRatePlanRulesRepository ratePlanRulesRepository)
 {
     _simCardRequestRepository = simCardRequestRepository;
     _employeeRepository       = employeeRepository;
     _successFactorRepository  = successFactorRepository;
     _unitOfWork = unitOfWork;
     _ratePlanRulesRepository = ratePlanRulesRepository;
 }
Пример #2
0
 public RatePlanRulesService(IRatePlanRulesRepository ratePlanRulesRepository)
 {
     _ratePlanRulesRepository = ratePlanRulesRepository;
 }