Beispiel #1
0
 public FuelingsRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #2
0
 public DepartmentsRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #3
0
 public DriversRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #4
0
 public DeficitsRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #5
0
 public CitiesRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #6
0
 public CategoriesController(MyAppDbContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public SalesRepository(MyAppDbContext context) : base(context)
 {
 }
 public LanguageService(MyAppDbContext context) => _context = context;
 public CustomerController(MyAppDbContext _contenxt)
 {
     this.context = _contenxt;
 }
Beispiel #10
0
 /// <summary>
 /// Inject the DbContext in the ctor
 /// </summary>
 public EmployeeService(MyAppDbContext ctx)
 {
     _ctx = ctx;
 }
Beispiel #11
0
 public CategoryRepository(MyAppDbContext myAppDbContext)
 {
     _myAppDbContext = myAppDbContext;
 }
Beispiel #12
0
 public AccountController(MyAppDbContext db)
 {
     this.db = db;
 }
Beispiel #13
0
 public CharactersController(MyAppDbContext context, ILogger <CharactersController> logger)
 {
     _context = context;
     _logger  = logger;
 }
Beispiel #14
0
 public CategoryRepository(MyAppDbContext context, IUnitOfWorkAsync UnitofWork) : base(context, UnitofWork)
 {
     oDbContext  = context;
     oUnitofWork = UnitofWork;
 }
 public CustomersController(MyAppDbContext context)
 {
     this.context = context;
 }
Beispiel #16
0
 public MinhaPaginaModel(MyAppDbContext ctc)
 {
     _context = ctc;
 }
Beispiel #17
0
 public AssetController(IAsset assetRepo, ILogger <AssetController> logger, MyAppDbContext dbContext)
 {
     _assetRepo = assetRepo;
     _logger    = logger;
     _dbContext = dbContext;
 }
 public AddressRepo(MyAppDbContext db)
 {
     _db = db;
 }
Beispiel #19
0
 public PricesRepository(MyAppDbContext context) : base(context)
 {
 }
 public AccountController(MyAppDbContext dbContext, UserManager<ApplicationUser> userManager, SignInManager<ApplicationUser> signInManager) {
   _dbContext = dbContext;
   _userManager = userManager;
   _signInManager = signInManager;
 }
Beispiel #21
0
 public StreetsRepository(MyAppDbContext context) : base(context)
 {
 }
 public DrinkRepository(MyAppDbContext myAppDbContext)
 {
     _myAppDbContext = myAppDbContext;
 }
Beispiel #23
0
 public SupplyRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #24
0
 public HomeController(MyAppDbContext context, IHubContext <ListaHub> hub)
 {
     _context = context;
     _hub     = hub;
 }
Beispiel #25
0
 public CustomersRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #26
0
 public BookService(MyAppDbContext context)
 {
     _context = context;
 }
Beispiel #27
0
 public DistrictsRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #28
0
 public DbRepository(MyAppDbContext context)
 {
     _context = context;
 }
Beispiel #29
0
 public EmployeesRepository(MyAppDbContext context) : base(context)
 {
 }
Beispiel #30
0
 public LoveTeamsController(MyAppDbContext context)
 {
     this.context = context;
 }
Beispiel #31
0
 public AddresesRepository(MyAppDbContext context) : base(context)
 {
 }
 public UsersController(MyAppDbContext dbContext, UserManager<ApplicationUser> userManager) {
   _dbContext = dbContext;
   _userManager = userManager;
 }