public CategoriaFotoController(ICommandBus commandBus, ICategoriaFotoRepository categoriafotoRepository, ICategoriaFoto_IdiomaRepository categoriafoto_IdiomaRepository)
 {
     this.commandBus = commandBus;
     this.categoriafotoRepository        = categoriafotoRepository;
     this.categoriafoto_IdiomaRepository = categoriafoto_IdiomaRepository;
     log4net.Config.XmlConfigurator.Configure();
 }
 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();
 }
 public CreateOrUpdateCategoriaFotoHandler(ICategoriaFotoRepository CategoriaFotoRepository, IUnitOfWork unitOfWork)
 {
     this.CategoriaFotoRepository = CategoriaFotoRepository;
     this.unitOfWork = unitOfWork;
 }