public static Property GetPropertyByID(int id) { Property property = new Property(); SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); property = sqlPropertyProvider.GetPropertyByID(id); return property; }
public static long InsertPropertyWorkingDays(PropertyWorkingDays workingDays) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); var id = sqlPropertyProvider.InsertPropertyWorkingDays(workingDays); return(id); }
public static bool ApproveProperty(long propertyId) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); var isHidden = sqlPropertyProvider.ApproveProperty(propertyId); return(isHidden); }
public static bool UpdateProperty(Property property) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); var isUpdate = sqlPropertyProvider.UpdateProperty(property); return(isUpdate); }
public static bool HidePropertyByVendorId(long vendorId) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); var isHidden = sqlPropertyProvider.HidePropertyByVendorId(vendorId); return(isHidden); }
public static List<Property> GetAllPropertiesSearch(string SearchString) { List<Property> properties = new List<Property>(); SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); properties = sqlPropertyProvider.GetAllPropertiesSearch(SearchString); return properties; }
public static bool DeletePropertyWorkingDays(long id) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); var isDelete = sqlPropertyProvider.DeleteProperty(id); return(isDelete); }
public static bool UpdatePropertyWorkingDays(PropertyWorkingDays workingDays) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); var isUpdate = sqlPropertyProvider.UpdatePropertyWorkingDays(workingDays); return(isUpdate); }
public static bool DeleteProperty(long PropertyId) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); var isDelete = sqlPropertyProvider.DeleteProperty(PropertyId); return(isDelete); }
public static long InsertProperty(Property property) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); var id = sqlPropertyProvider.InsertProperty(property); return(id); }
public static Property GetPropertyByID(int id) { Property property = new Property(); SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); property = sqlPropertyProvider.GetPropertyByID(id); return(property); }
public static List <Property> GetAllPropertiesSearch(string SearchString) { List <Property> properties = new List <Property>(); SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); properties = sqlPropertyProvider.GetAllPropertiesSearch(SearchString); return(properties); }
public static AdminPropertyList GetAdminPropertyListById(long propertyId) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetAdminPropertyListById(propertyId)); }
public static List <ClientPropertyRating> PropertyRatings(int Id) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetClientPropertyRatings(Id)); }
public static PropertyDetails GetPropertyDetailsById(int id) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertyDetailsById(id)); }
public static List <AdminPropertyList> GetPendingPropertyList() { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPendingPropertyList()); }
public static bool UpdateProperty(Property property) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); return sqlPropertyProvider.UpdateProperty(property); }
public static BookingConfirmed GetPropertyViewByPropertyIdnBookingId(long propertyId, long bookingId) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertyViewByPropertyIdnBookingId(propertyId, bookingId)); }
public static PropertyWorkingDays GetAllPropertyWorkingDaysByPropertyId(long id) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertyWorkingDaysByPropertyId(id)); }
public static List <PropertySearchResult> GetAllPropertySearchResults() { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetAllPropertySearchResults()); }
public static int InsertProperty(Property property) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); return sqlPropertyProvider.InsertProperty(property); }
public static List <PropertySearchResultNew> GetPropertiesBySearch(string searchtext) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertiesBySearch(searchtext)); }
public static long InsertPropertyRating(PropertyRating propertyRating) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.InsertPropertyRating(propertyRating)); }
public static List <PropertySearchResultNew> GetShareType(string type) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetShareType(type)); }
public static long InsertPropertyService(PropertyService service) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.InsertPropertyService(service)); }
public static List <Property> GetAllProperties() { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetAllProperties()); }
public static List <PropertyServiceViewModel> GetServicesByPropertyId(long propertyId) { SqlPropertyProvider sqlGalleryProvider = new SqlPropertyProvider(); return(sqlGalleryProvider.GetServicesByPropertyId(propertyId)); }
public static List <PropertySearchResultNew> GetPropertiesAndPropertyRating() { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertiesAndPropertyRating()); }
public static bool DeletePropertyServiceById(long propertyServiceId) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.DeletePropertyServiceById(propertyServiceId)); }
public static PropertyView GetPropertyViewById(int id) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertyViewById(id)); }
public static List <PropertyServiceViewModel> GetPropertyServiceByPropertyIds(string ids) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertyServiceByPropertyIds(ids)); }
public static Property GetPropertyById(long propertyId) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertyById(propertyId)); }
public static List <FeatureProperty> GetFeaturedProperties(int maxRow) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetFeatureProperties(maxRow)); }
public static List <PropertyServiceViewModel> GetPropertyServicesOnClient(long propertyId) { SqlPropertyProvider propertyProvider = new SqlPropertyProvider(); return(propertyProvider.GetPropertyServicesOnClient(propertyId)); }
public static bool DeleteProperty(int propertyID) { SqlPropertyProvider sqlPropertyProvider = new SqlPropertyProvider(); return sqlPropertyProvider.DeleteProperty(propertyID); }