Ejemplo n.º 1
0
 public CalendarioController(ICommandBus commandBus, ICalendarioRepository calendarioRepository, ICalendario_IdiomaRepository calendario_IdiomaRepository)
 {
     this.commandBus                  = commandBus;
     this.calendarioRepository        = calendarioRepository;
     this.calendario_IdiomaRepository = calendario_IdiomaRepository;
     log4net.Config.XmlConfigurator.Configure();
 }
 public CalendarioController(ICalendarioRepository calendarioRepository,
                             IMapper mapper,
                             ICalendarioService calendarioService,
                             INotificador notificador,
                             IUser user) : base(notificador, user)
 {
     _calendarioRepository = calendarioRepository;
     _calendarioService    = calendarioService;
     _mapper = mapper;
 }
 public PaginaGestorContenidosController(ICalendarioRepository calendarioRepository)
 {
     this.calendarioRepository = calendarioRepository;
     log4net.Config.XmlConfigurator.Configure();
 }
 public DeleteCalendarioHandler(ICalendarioRepository CalendarioRepository, IUnitOfWork unitOfWork)
 {
     this.CalendarioRepository = CalendarioRepository;
     this.unitOfWork           = unitOfWork;
 }
Ejemplo n.º 5
0
 public CalendarioService(ICalendarioRepository repository, IMapper mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }
 public CalendarioService(ICalendarioRepository calendarioRepository, INotificador notificador) : base(notificador)
 {
     _calendarioRepository = calendarioRepository;
 }
 public CreateOrUpdateCalendarioHandler(ICalendarioRepository CalendarioRepository, IUnitOfWork unitOfWork)
 {
     this.CalendarioRepository = CalendarioRepository;
     this.unitOfWork           = unitOfWork;
 }
Ejemplo n.º 8
0
 public GlobalController(ICalendarioRepository calendarioRepository)
 {
     this.calendarioRepository = calendarioRepository;
     log4net.Config.XmlConfigurator.Configure();
 }