Ejemplo n.º 1
0
 public ViewProductsInADepartment(IDisplayReportModels report_engine,
                                  IFindInformationInTheStoreCatalog store_catalog)
 {
     this.report_engine = report_engine;
     this.store_catalog = store_catalog;
 }
 public ViewTheDepartmentsInADepartments(IFindInformationInTheStoreCatalog store_catalog, IDisplayReportModels report_engine)
 {
     this.store_catalog = store_catalog;
       this.report_engine = report_engine;
 }
Ejemplo n.º 3
0
 public ViewTheMainDepartmentsInTheStore(IFindInformationInTheStoreCatalog store_catalog,
                                         IDisplayReportModels reporting_engine)
 {
     this.store_catalog    = store_catalog;
     this.reporting_engine = reporting_engine;
 }
Ejemplo n.º 4
0
 public ViewProductsInADepartment(IDisplayReportModels report_engine,
                              IFindInformationInTheStoreCatalog store_catalog)
 {
     this.report_engine = report_engine;
       this.store_catalog = store_catalog;
 }
Ejemplo n.º 5
0
 public ViewReportModel(IDisplayReportModels reporting_engine, IFetchInformationUsingARequest <ReportModel> query)
 {
     this.query            = query;
     this.reporting_engine = reporting_engine;
 }