public UsuarioEmpresaService(GerenciaContext dbContext) : base(dbContext)
 {
 }
 public DashboardController(GerenciaContext ctx)
 {
     this.ctx = ctx;
 }
예제 #3
0
 public UsuarioService(GerenciaContext dbContext, IUsuarioEmpresaService usuarioEmpresaService) : base(dbContext)
 {
     this.usuarioEmpresaService = usuarioEmpresaService;
 }
예제 #4
0
 public AgendaController(GerenciaContext context)
 {
     _context     = context;
     validaAgenda = new ValidaAgenda();
 }
 public AutenticacaoService(GerenciaContext context) : base(context)
 {
 }
예제 #6
0
 public PessoasController(GerenciaContext context)
 {
     _context = context;
 }