Ejemplo n.º 1
0
 public GetAllHandler(IReportComponentRepository repository = null)
 {
     _repository = repository ?? new ReportComponentRepository();
 }
Ejemplo n.º 2
0
 public DeleteHandler(IReportComponentRepository repository = null)
 {
     _repository = repository ?? new ReportComponentRepository();
 }
Ejemplo n.º 3
0
 public DashboardComponentAddHandler(IDashboardComponentRepository dashboardComponentRepository = null, IReportComponentRepository reportComponentRepository = null)
 {
     _dashboardComponentRepository = dashboardComponentRepository ?? new DashboardComponentRepository();
     _reportComponentRepository    = reportComponentRepository ?? new ReportComponentRepository();
 }