Beispiel #1
0
 public bool UpdateCatalog(ViewModel.tblCatalog Catalog)
 {
     return(sqlHelper.RunProcedure("sp_tblCatalog_Update", Catalog) > 0);
 }
Beispiel #2
0
 public bool DeleteCatalog(ViewModel.tblCatalog Catalog)
 {
     return(sqlHelper.RunProcedure("sp_tblCatalog_DeleteRow", Catalog) > 0);
 }
Beispiel #3
0
 public bool AddCatalog(ViewModel.tblCatalog Catalog)
 {
     return(sqlHelper.RunProcedure("sp_tblCatalog_Insert", Catalog) > 0);
 }