public ManageController(IServiceAreaTownRepository serviceAreaTownRepo,
			IServiceAreaRepository serviceAreaRepo,
			IPricingTierRepository pricingTierRepo,
			IAccountRepository accountRepo)
        {
            this.serviceAreaTownRepo = serviceAreaTownRepo;
            this.serviceAreaRepo = serviceAreaRepo;
            this.pricingTierRepo = pricingTierRepo;
            this.accountRepo = accountRepo;
        }
        public OilDeliveryController(
			 IServiceAreaRepository serviceAreaRepo,
			 IServiceAreaTownRepository townRepo,
			 IPricingTierRepository pricingTierRepo,
			 IFillPipeLocationRepository oilTankLocationRepo,
			 ICustomerRepository customerRepo,
			 IDeliveryRequestRepository deliveryRequestRepo)
        {
            this.serviceAreaRepo = serviceAreaRepo;
            this.pricingTierRepo = pricingTierRepo;
            this.oilTankLocationRepo = oilTankLocationRepo;
            this.townRepo = townRepo;
            this.customerRepo = customerRepo;
            this.deliveryRequestRepo = deliveryRequestRepo;
        }
Beispiel #3
0
 public ServiceAreaService(IServiceAreaRepository svcAreaRepo, IUnitOfWork unitOfWork)
 {
     _svcAreaRepo = svcAreaRepo;
     _unitOfWork  = unitOfWork;
 }
Beispiel #4
0
 public LocationService(IRegionRepository regionRepository, IServiceAreaRepository serviceAreaRepository)
 {
     this._regionRepository      = regionRepository;
     this._serviceAreaRepository = serviceAreaRepository;
 }
 public CompanyController( IServiceAreaRepository serviceAreaRepo,
     IPricingTierRepository pricingTierRepo )
 {
     this.serviceAreaRepo = serviceAreaRepo;
     this.pricingTierRepo = pricingTierRepo;
 }