public TTTemplatePrintExcelService(IRepository <TTTemplatePrintExcel> ttRepository, IDataProvider dataProvider, IDbContext dbContext, ITTSearchAdvancedDataService tTSearchAdvancedDataService)
 {
     this._ttRepository = ttRepository;
     this._dataProvider = dataProvider;
     this._dbContext    = dbContext;
     this._tTSearchAdvancedDataService = tTSearchAdvancedDataService;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Ctor
 /// </summary>
 /// <param name="principalPageRepository">Affiliate repository</param>
 /// <param name="eventPublisher">Event published</param>
 public TTFilterService(IRepository <TTFilter> ttFilterRepository, IDataProvider dataProvider, IDbContext dbContext, ITTSearchAdvancedDataService tTSearchAdvancedDataService)
 {
     this._ttFilterRepository          = ttFilterRepository;
     this._dataProvider                = dataProvider;
     this._dbContext                   = dbContext;
     this._tTSearchAdvancedDataService = tTSearchAdvancedDataService;
 }
Ejemplo n.º 3
0
 public TTSearchAdvancedDataService(IRepository <TTVista> ttViewRepository, IDataProvider dataProvider, IDbContext dbContext, ITTSearchAdvancedDataService tTSearchAdvancedDataService, IRepository <TTVista_Detalle> ttViewDetailRepository, IRepository <TTVista_ListaDependientes> ttViewDetailDepRepository)
 {
     this._ttViewRepository          = ttViewRepository;
     this._ttViewDetailRepository    = ttViewDetailRepository;
     this._ttViewDetailDepRepository = ttViewDetailDepRepository;
     this._dataProvider = dataProvider;
     this._dbContext    = dbContext;
     this._tTSearchAdvancedDataService = tTSearchAdvancedDataService;
 }