public bool UpdateGallery(ViewModel.tblGallery Gallery) { return(sqlHelper.RunProcedure("sp_tblGallery_Update", Gallery) > 0); }
public bool DeleteGallery(ViewModel.tblGallery Gallery) { return(sqlHelper.RunProcedure("sp_tblGallery_DeleteRow", Gallery) > 0); }
public bool AddGallery(ViewModel.tblGallery Gallery) { return(sqlHelper.RunProcedure("sp_tblGallery_Insert", Gallery) > 0); }