Esempio n. 1
0
 public ReportService(IRequestsService requestsService,
                      ITableRepository tableRepository,
                      IReportManager reportManager,
                      ITypeHelper typeHelper,
                      IStringAnylize stringAnylize,
                      ICustomReportService customReportService)
 {
     _requestsService     = requestsService;
     _tableRepository     = tableRepository;
     _reportManager       = reportManager;
     _typeHelper          = typeHelper;
     _stringAnylize       = stringAnylize;
     _customReportService = customReportService;
 }
Esempio n. 2
0
 public CustomReportService(IStringAnylize stringAnylize,
                            ITypeHelper typeHelper)
 {
     _stringAnylize = stringAnylize;
     _typeHelper    = typeHelper;
 }