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