public PerfilController(IHttpContextService httpContextService,
                         ICacheService cacheService,
                         IEmpresaService empresaService,
                         IEnderedecoService enderedecoService,
                         IExpedienteService expedienteService)
     : base(httpContextService, cacheService)
 {
     _empresaService    = empresaService;
     _enderedecoService = enderedecoService;
     _expedienteService = expedienteService;
 }
 public CasefileController(IExpedienteService ExpedienteService, ISessionList SessionList)
 {
     this.ExpedienteService = ExpedienteService;
     this.SessionList       = SessionList;
 }
 public VentaController(IVentaService ventaService, IExpedienteService expedienteService)
 {
     this.ventaService      = ventaService;
     this.expedienteService = expedienteService;
 }
Exemplo n.º 4
0
 public ExpedienteController()
 {
     ExpedienteServicio = new ExpedienteRepositorio();
 }