public RouteService( CesContext context, IAirProvider airProvider, IShipProvider shipProvider ) { _context = context; _airProvider = airProvider; _shipProvider = shipProvider; }
public UserService(CesContext context) { _context = context; }
public CityService(CesContext context) { _context = context; }
public AirProviderGatewayService(CesContext context) { _context = context; }
public PriceService(CesContext context, IRouteConfiguration routeConfiguration) { _context = context; _routeConfiguration = routeConfiguration; }
public PricesController(CesContext context, IPrice priceService) { _context = context; _priceService = priceService; }
public GoodTypesController(CesContext context, IGoodType goodType) { _context = context; _goodType = goodType; }
public CitiesController(CesContext context, ICity cityService) { _context = context; _cityService = cityService; }
public PublicService(CesContext context) { _context = context; }
public GoodTypeService(CesContext context) { _context = context; }
public UsersController(CesContext context, IUser userService) { _context = context; _userService = userService; }
public RouteConfiguratoinService(CesContext context) { _context = context; }
public PublicController(CesContext context, IPublicService publicService, IPrice priceService) { _context = context; _publicService = publicService; _priceService = priceService; }