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