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