コード例 #1
0
 public AccountsController(ProjectMobileContext context, Microsoft.Extensions.Configuration.IConfiguration config)
 {
     _config  = config;
     _context = context;
     _accRepo = new AccountRepository(_context, _config);
 }
コード例 #2
0
 public ToolRepository(ProjectMobileContext context)
 {
     _context = context;
 }
コード例 #3
0
 public ActorsController(ProjectMobileContext context)
 {
     _context = context;
 }
コード例 #4
0
 public TblActorsController(ProjectMobileContext context)
 {
     _context = context;
     _repo    = new ActorRepository(_context);
 }
コード例 #5
0
ファイル: AccountRepository.cs プロジェクト: MinhVox/tayduky
 public AccountRepository(ProjectMobileContext context)
 {
     this._context = context;
 }
コード例 #6
0
 public ToolsController(ProjectMobileContext context)
 {
     _context = context;
 }
コード例 #7
0
 public TblToolsController(ProjectMobileContext context)
 {
     _context  = context;
     _toolRepo = new ToolRepository(_context);
 }
コード例 #8
0
ファイル: SceneRepository.cs プロジェクト: MinhVox/tayduky
 public SceneRepository(ProjectMobileContext context)
 {
     this._context = context;
 }
コード例 #9
0
 public AccountRepository(ProjectMobileContext context, IConfiguration config)
 {
     _context = context;
     _config  = config;
 }
コード例 #10
0
 public TblScenesController(ProjectMobileContext context)
 {
     _context   = context;
     _sceneRepo = new SceneRepository(_context);
 }
コード例 #11
0
 public ScenesController(ProjectMobileContext context)
 {
     _context = context;
 }
コード例 #12
0
 public ScenarioRepository(ProjectMobileContext context)
 {
     _context = context;
 }
コード例 #13
0
 public AccountsController(ProjectMobileContext context)
 {
     _context = context;
     _accRepo = new AccountRepository(_context);
 }
コード例 #14
0
 public EquipmentRepository(ProjectMobileContext context)
 {
     _context = context;
 }