Пример #1
0
 public ClienteService(IEntityBaseRepository <Cliente> entityRepository,
                       IUnitOfWork unitOfWork,
                       IAppContext appContext,
                       IReporteService reporteService,
                       ISevice service) : base(entityRepository, unitOfWork, appContext)
 {
     this.reporteService = reporteService;
     this.service        = service;
 }
Пример #2
0
 public EmpleadoService(IEntityBaseRepository <Empleado> entityRepository,
                        IUnitOfWork unitOfWork,
                        IAppContext appContext,
                        IEntityBaseRepository <EmpleadoPerfil> empleadoPerfilRepository,
                        IEntityBaseRepository <Perfil> perfilRepository,
                        ISevice service) : base(entityRepository, unitOfWork, appContext)
 {
     this.empleadoPerfilRepository = empleadoPerfilRepository;
     this.perfilRepository         = perfilRepository;
     this.service = service;
 }
Пример #3
0
 public HorasTrabajadasService(IEntityBaseRepository <HorasTrabajadas> entityRepository,
                               IUnitOfWork unitOfWork,
                               IAppContext appContext,
                               IEntityBaseRepository <Tarea> tareaRepository,
                               IEntityBaseRepository <HorasTrabajadasEstado> horasTrabajadasEstadoRepository,
                               ITareaService tareaService,
                               ISevice service) : base(entityRepository, unitOfWork, appContext)
 {
     this.tareaRepository = tareaRepository;
     this.horasTrabajadasEstadoRepository = horasTrabajadasEstadoRepository;
     this.tareaService = tareaService;
     this.service      = service;
 }
Пример #4
0
 public PerfilService(IEntityBaseRepository <Perfil> entityRepository, IUnitOfWork unitOfWork, IAppContext appContext, ISevice service) : base(entityRepository, unitOfWork, appContext)
 {
     this.service = service;
 }