Beispiel #1
0
 public PropertyApiController(ICustomerService CustomerService, IOpenHouseService OpenHouseService, IPropertyImageService PropertyImageService, IPropertyService PropertyService, IUserService UserService, IUserRoleService UserRoleService)
 {
     this._PropertyService      = PropertyService;
     this._UserService          = UserService;
     this._UserRoleService      = UserRoleService;
     this._PropertyImageService = PropertyImageService;
     this._OpenHouseService     = OpenHouseService;
     this._CustomerService      = CustomerService;
 }
 public OpenHousesApiController(IOpenHouseService openHouseService)
 {
     _openHouseService = openHouseService;
 }