public UserSignInLogsController(ETBContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public ServicesController(ETBContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public ExternalContactsController(ETBContext context)
 {
     _context = context;
 }
 public DepartmentsController(ETBContext context)
 {
     _context = context;
 }
 public DistrictsController(ETBContext context)
 {
     _context = context;
 }
 public DivisionsController(ETBContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public UserDetailsController(ETBContext context)
 {
     _context = context;
 }
Exemplo n.º 8
0
 public CursoGerenciador()
 {
     _context = new ETBContext();
 }
Exemplo n.º 9
0
 public ProfessorGerenciador()
 {
     _context = new ETBContext();
 }
Exemplo n.º 10
0
 public UserInfosController(ETBContext context, DataProtector dataProtector, EncryptionDecryption encryptionDecryption)
 {
     _context              = context;
     _dataProtector        = dataProtector;
     _encryptionDecryption = encryptionDecryption;
 }
 public UserSubscriptionsController(ETBContext context)
 {
     _context = context;
 }
Exemplo n.º 12
0
 public StatesController(ETBContext context)
 {
     _context = context;
 }
Exemplo n.º 13
0
 public TendersController(ETBContext context, IOptions <ApplicationSettingsApi> appSettings)
 {
     _context     = context;
     _appSettings = appSettings;
 }