Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 public ApplicationsController(IApplicationsAppService applicationsAppServic,
                               IBuildingsAppService buildingsAppService,
                               IBuildingUnitsAppService buildingUnitsAppService,
                               IPropertyOwnershipAppService propertyOwnershipAppService,
                               IInterventionTypeAppService interventionTypeAppService,
                               IRestorationTypeAppService restorationTypeAppService,
                               INeighborhoodAppService neighborhoodAppService,
                               IBuildingTypeAppService buildingTypeAppService,
                               IBuildingUsesAppService buildingUsesAppService,
                               IUploadApplicationFilesAppService uploadApplicationFilesAppService,
                               IBuildingUnitContentsAppService buildingUnitContentsAppService)
 {
     _applicationsAppService           = applicationsAppServic;
     _buildingsAppService              = buildingsAppService;
     _buildingUnitsAppService          = buildingUnitsAppService;
     _propertyOwnershipAppService      = propertyOwnershipAppService;
     _interventionTypeAppService       = interventionTypeAppService;
     _restorationTypeAppService        = restorationTypeAppService;
     _neighborhoodAppService           = neighborhoodAppService;
     _buildingTypeAppService           = buildingTypeAppService;
     _buildingUsesAppService           = buildingUsesAppService;
     _uploadApplicationFilesAppService = uploadApplicationFilesAppService;
     _buildingUnitContentsAppService   = buildingUnitContentsAppService;
 }
 public BuildingUnitController(IBuildingUnitsAppService buildingUnitsAppService, IBuildingUnitContentsAppService buildingUnitContentsAppService)
 {
     _buildingUnitsAppService        = buildingUnitsAppService;
     _buildingUnitContentsAppService = buildingUnitContentsAppService;
 }