Exemple #1
0
 public GenericMVCController(
     IGenericRepositoryRead repositoryRead,
     IGenericDomainService service,
     IUnitOfWork uoW)
     : base()
 {
     this.repositoryRead = repositoryRead;
     this.service        = service;
     this.uoW            = uoW;
 }
Exemple #2
0
 public TurmasController(
     IGenericRepositoryRead repositoryRead,
     IGenericDomainService service,
     IMapper mapper,
     Typer typer)
     : base()
 {
     this.repositoryRead = repositoryRead;
     this.service        = service;
     this.mapper         = mapper;
     this._typer         = typer;
 }
Exemple #3
0
        //private readonly IUnitOfWork uoW;

        public GenericController(
            IGenericRepositoryRead repositoryRead,
            IGenericDomainService service,
            IMapper mapper,
            Typer typer
            /*IUnitOfWork uoW*/)
            : base()
        {
            this.repositoryRead = repositoryRead;
            this.service        = service;
            this.mapper         = mapper;
            this._typer         = typer;
            //this.uoW = uoW;
        }
Exemple #4
0
 public TurmaUpInsertValidation(IGenericRepositoryRead repository)
 {
     this.repository = repository;
 }