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;
        }