public AdminEmployeesService( RMSContext dbContext, IMapper mapper, UserManager <User> userManager) : base(dbContext, mapper) { this.userManager = userManager; }
protected BaseEFService( RMSContext dbContext, IMapper mapper) { this.DbContext = dbContext; this.Mapper = mapper; }
public FlightsController(RMSContext context) { _context = context; }
public firstController(RMSContext _R) { R = _R; }
public firstController(RMSContext _RM) { R = _RM; }
public flightController(RMSContext context) { _context = context; }
public WaiterService(RMSContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public ChefService(RMSContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public AirlineController(RMSContext _ORM) { ORM = _ORM; }
public AdminStorageService(RMSContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public BartenderService(RMSContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public OrdersService(RMSContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public HomeController(RMSContext context, IMapper mapper, UserManager <User> userManager) { this.context = context; this.mapper = mapper; this.userManager = userManager; }