示例#1
0
 public FotoController(ICommandBus commandBus, IFotoRepository fotoRepository, IFoto_IdiomaRepository foto_IdiomaRepository)
 {
     this.commandBus            = commandBus;
     this.fotoRepository        = fotoRepository;
     this.foto_IdiomaRepository = foto_IdiomaRepository;
     log4net.Config.XmlConfigurator.Configure();
 }
 public DeleteFoto_IdiomaHandler(IFoto_IdiomaRepository Foto_IdiomaRepository, IUnitOfWork unitOfWork)
 {
     this.Foto_IdiomaRepository = Foto_IdiomaRepository;
     this.unitOfWork            = unitOfWork;
 }
示例#3
0
 public CreateOrUpdateFoto_IdiomaHandler(IFoto_IdiomaRepository Foto_IdiomaRepository, IUnitOfWork unitOfWork)
 {
     this.Foto_IdiomaRepository = Foto_IdiomaRepository;
     this.unitOfWork            = unitOfWork;
 }
 public FotoController(ICommandBus commandBus, IFotoRepository fotoRepository, IFoto_IdiomaRepository foto_IdiomaRepository, ICategoriaFotoRepository categoriaFotoRepository, IUnitOfWork uow)
 {
     this.commandBus              = commandBus;
     this.fotoRepository          = fotoRepository;
     this.foto_IdiomaRepository   = foto_IdiomaRepository;
     this.categoriaFotoRepository = categoriaFotoRepository;
     this.Uow = uow;
     log4net.Config.XmlConfigurator.Configure();
 }