Example #1
0
 public BuildingController(IBuildingsAppService buildingsAppService, IBuildingTypeAppService buildingTypeAppService, INeighborhoodAppService neighborhoodAppService, IBuildingUsesAppService buildingUsesAppService)
 {
     _buildingsAppService    = buildingsAppService;
     _buildingTypeAppService = buildingTypeAppService;
     _neighborhoodAppService = neighborhoodAppService;
     _buildingUsesAppService = buildingUsesAppService;
 }
 public BuildingController(IBuildingsAppService buildingsAppService, IBuildingTypeAppService buildingTypeAppService, INeighborhoodAppService neighborhoodAppService, IBuildingUsesAppService buildingUsesAppService, IUploadFilesAppService uploadFilesAppService, IBuildingUnitContentsAppService buildingUnitContentsAppService, IBuildingUnitsAppService buildingUnitsAppService)
 {
     _buildingsAppService            = buildingsAppService;
     _buildingTypeAppService         = buildingTypeAppService;
     _neighborhoodAppService         = neighborhoodAppService;
     _buildingUsesAppService         = buildingUsesAppService;
     _uploadFilesAppService          = uploadFilesAppService;
     _buildingUnitContentsAppService = buildingUnitContentsAppService;
     _buildingUnitsAppService        = buildingUnitsAppService;
 }
Example #3
0
 public ReportingController(IDonorsAppService donorsAppService,
                            InterventionTypeAppService interventionTypeAppService,
                            INeighborhoodAppService neighborhoodAppService,
                            IBuildingUsesAppService buildingUsesAppService,
                            IUploadProjectFilesAppService uploadProjectFilesAppService)
 {
     _donorsAppService             = donorsAppService;
     _InterventionTypeAppService   = interventionTypeAppService;
     _neighborhoodAppService       = neighborhoodAppService;
     _buildingUsesAppService       = buildingUsesAppService;
     _uploadProjectFilesAppService = uploadProjectFilesAppService;
 }
Example #4
0
 public ApplicationsController(IApplicationsAppService applicationsAppServic,
                               IBuildingsAppService buildingsAppService,
                               IBuildingUnitsAppService buildingUnitsAppService,
                               IPropertyOwnershipAppService propertyOwnershipAppService,
                               IInterventionTypeAppService interventionTypeAppService,
                               IRestorationTypeAppService restorationTypeAppService,
                               INeighborhoodAppService neighborhoodAppService,
                               IBuildingTypeAppService buildingTypeAppService,
                               IBuildingUsesAppService buildingUsesAppService)
 {
     _applicationsAppService      = applicationsAppServic;
     _buildingsAppService         = buildingsAppService;
     _buildingUnitsAppService     = buildingUnitsAppService;
     _propertyOwnershipAppService = propertyOwnershipAppService;
     _interventionTypeAppService  = interventionTypeAppService;
     _restorationTypeAppService   = restorationTypeAppService;
     _neighborhoodAppService      = neighborhoodAppService;
     _buildingTypeAppService      = buildingTypeAppService;
     _buildingUsesAppService      = buildingUsesAppService;
 }
Example #5
0
 public BuildingUsesController(IBuildingUsesAppService buildingUsesAppServic)
 {
     _buildingUsesAppService = buildingUsesAppServic;
 }