示例#1
0
 public RouteService(
     CesContext context,
     IAirProvider airProvider,
     IShipProvider shipProvider
     )
 {
     _context      = context;
     _airProvider  = airProvider;
     _shipProvider = shipProvider;
 }
示例#2
0
 public UserService(CesContext context)
 {
     _context = context;
 }
示例#3
0
 public CityService(CesContext context)
 {
     _context = context;
 }
示例#4
0
 public AirProviderGatewayService(CesContext context)
 {
     _context = context;
 }
示例#5
0
 public PriceService(CesContext context, IRouteConfiguration routeConfiguration)
 {
     _context            = context;
     _routeConfiguration = routeConfiguration;
 }
示例#6
0
 public PricesController(CesContext context, IPrice priceService)
 {
     _context      = context;
     _priceService = priceService;
 }
示例#7
0
 public GoodTypesController(CesContext context, IGoodType goodType)
 {
     _context  = context;
     _goodType = goodType;
 }
示例#8
0
 public CitiesController(CesContext context, ICity cityService)
 {
     _context     = context;
     _cityService = cityService;
 }
示例#9
0
 public PublicService(CesContext context)
 {
     _context = context;
 }
示例#10
0
 public GoodTypeService(CesContext context)
 {
     _context = context;
 }
示例#11
0
 public UsersController(CesContext context, IUser userService)
 {
     _context     = context;
     _userService = userService;
 }
示例#12
0
 public RouteConfiguratoinService(CesContext context)
 {
     _context = context;
 }
示例#13
0
 public PublicController(CesContext context, IPublicService publicService, IPrice priceService)
 {
     _context       = context;
     _publicService = publicService;
     _priceService  = priceService;
 }