Ejemplo n.º 1
0
 public ApplicationsController(IApplicationsAppService applicationsAppServic, IBuildingsAppService buildingsAppService, IBuildingUnitsAppService buildingUnitsAppService, IPropertyOwnershipAppService propertyOwnershipAppService, IInterventionTypeAppService interventionTypeAppService)
 {
     _applicationsAppService      = applicationsAppServic;
     _buildingsAppService         = buildingsAppService;
     _buildingUnitsAppService     = buildingUnitsAppService;
     _propertyOwnershipAppService = propertyOwnershipAppService;
     _interventionTypeAppService  = interventionTypeAppService;
 }
Ejemplo n.º 2
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;
 }
 public InterventionTypeController(IInterventionTypeAppService interventionTypeAppService)
 {
     _interventionTypeAppService = interventionTypeAppService;
 }