public UserSignInLogsController(ETBContext context)
 {
     _context = context;
 }
 public ServicesController(ETBContext context)
 {
     _context = context;
 }
Exemple #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;
 }
Exemple #7
0
 public UserDetailsController(ETBContext context)
 {
     _context = context;
 }
 public CursoGerenciador()
 {
     _context = new ETBContext();
 }
Exemple #9
0
 public ProfessorGerenciador()
 {
     _context = new ETBContext();
 }
Exemple #10
0
 public UserInfosController(ETBContext context, DataProtector dataProtector, EncryptionDecryption encryptionDecryption)
 {
     _context              = context;
     _dataProtector        = dataProtector;
     _encryptionDecryption = encryptionDecryption;
 }
 public UserSubscriptionsController(ETBContext context)
 {
     _context = context;
 }
Exemple #12
0
 public StatesController(ETBContext context)
 {
     _context = context;
 }
Exemple #13
0
 public TendersController(ETBContext context, IOptions <ApplicationSettingsApi> appSettings)
 {
     _context     = context;
     _appSettings = appSettings;
 }