public IHttpActionResult DeleteBuilding(int buildingId) { if (_bll.DeleteBuilding(buildingId)) { return(Ok()); } return(InternalServerError()); }