Exemplo n.º 1
0
 public TableService(
     ILogger <ITableRepository> logger,
     ITableRepository tableRepository,
     IApiTableRequestModelValidator tableModelValidator,
     IBOLTableMapper boltableMapper,
     IDALTableMapper daltableMapper)
     : base(logger,
            tableRepository,
            tableModelValidator,
            boltableMapper,
            daltableMapper)
 {
 }
Exemplo n.º 2
0
 public AbstractTableService(
     ILogger logger,
     ITableRepository tableRepository,
     IApiTableRequestModelValidator tableModelValidator,
     IBOLTableMapper bolTableMapper,
     IDALTableMapper dalTableMapper)
     : base()
 {
     this.tableRepository     = tableRepository;
     this.tableModelValidator = tableModelValidator;
     this.bolTableMapper      = bolTableMapper;
     this.dalTableMapper      = dalTableMapper;
     this.logger = logger;
 }
Exemplo n.º 3
0
        public TableService(
            ILogger <ITableService> logger,
            MediatR.IMediator mediator,
            ITableRepository tableRepository,
            IApiTableServerRequestModelValidator tableModelValidator,
            IDALTableMapper dalTableMapper)
            : base()
        {
            this.TableRepository     = tableRepository;
            this.TableModelValidator = tableModelValidator;
            this.DalTableMapper      = dalTableMapper;
            this.logger = logger;

            this.mediator = mediator;
        }