Exemplo n.º 1
0
 public SQLpostrepo(Appdbcontext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public IConvocatoriaDataOP(Appdbcontext context)
 {
     this.context = context;
 }
Exemplo n.º 3
0
 public IConcursoDataOp(Appdbcontext context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 public ChatController(UserManager <AppUsers> userManager, Appdbcontext context)
 {
     _userManager = userManager;
     this.context = context;
 }
Exemplo n.º 5
0
 public HomeController(IEmployeeRepository employeeRespository, IHostingEnvironment hostingEnvironment, Appdbcontext context)
 {
     this.context            = context;
     this.hostingEnvironment = hostingEnvironment;
     _employeeRespository    = employeeRespository;
 }