Ejemplo n.º 1
0
 public TMSZoneService(IUnitOfWork unitOfWork, IMapper mapper, ITMSZoneRepository itmsZoneRepository, ITMSZoneLocationRepository itmsZoneLocationRepository)
 {
     _unitOfWork                 = unitOfWork;
     _mapper                     = mapper;
     _itmsZoneRepository         = itmsZoneRepository;
     _itmsZoneLocationRepository = itmsZoneLocationRepository;
 }
 public TMSZoneLocationService(IUnitOfWork unitOfWork, ITMSZoneLocationRepository tmsZoneLocationRepository, IMapper mapper, ITMSJobSiteRepository tmsJobSiteRepository,
                               ICompanyBasicInfoRepository companyRepo, IDepartmentRepository departmentRepo, ITMSsiteRepository siteRepo, ITMSZoneRepository tmsZoneRepository)
 {
     _unitOfWork = unitOfWork;
     _tmsZoneLocationRepository = tmsZoneLocationRepository;
     _mapper = mapper;
     _tmsJobSiteRepository = tmsJobSiteRepository;
     _companyRepo          = companyRepo;
     _departmentRepo       = departmentRepo;
     _siteRepo             = siteRepo;
     _tmsZoneRepository    = tmsZoneRepository;
 }