public AccountsController(ProjectMobileContext context, Microsoft.Extensions.Configuration.IConfiguration config)
 {
     _config  = config;
     _context = context;
     _accRepo = new AccountRepository(_context, _config);
 }
Esempio n. 2
0
 public ToolRepository(ProjectMobileContext context)
 {
     _context = context;
 }
 public ActorsController(ProjectMobileContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public TblActorsController(ProjectMobileContext context)
 {
     _context = context;
     _repo    = new ActorRepository(_context);
 }
Esempio n. 5
0
 public AccountRepository(ProjectMobileContext context)
 {
     this._context = context;
 }
Esempio n. 6
0
 public ToolsController(ProjectMobileContext context)
 {
     _context = context;
 }
Esempio n. 7
0
 public TblToolsController(ProjectMobileContext context)
 {
     _context  = context;
     _toolRepo = new ToolRepository(_context);
 }
Esempio n. 8
0
 public SceneRepository(ProjectMobileContext context)
 {
     this._context = context;
 }
Esempio n. 9
0
 public AccountRepository(ProjectMobileContext context, IConfiguration config)
 {
     _context = context;
     _config  = config;
 }
Esempio n. 10
0
 public TblScenesController(ProjectMobileContext context)
 {
     _context   = context;
     _sceneRepo = new SceneRepository(_context);
 }
 public ScenesController(ProjectMobileContext context)
 {
     _context = context;
 }
Esempio n. 12
0
 public ScenarioRepository(ProjectMobileContext context)
 {
     _context = context;
 }
Esempio n. 13
0
 public AccountsController(ProjectMobileContext context)
 {
     _context = context;
     _accRepo = new AccountRepository(_context);
 }
 public EquipmentRepository(ProjectMobileContext context)
 {
     _context = context;
 }