예제 #1
0
 public bool UpdateUnit(ViewModel.tblUnit Unit)
 {
     return(sqlHelper.RunProcedure("sp_tblUnit_Update", Unit) > 0);
 }
예제 #2
0
 public bool DeleteUnit(ViewModel.tblUnit Unit)
 {
     return(sqlHelper.RunProcedure("sp_tblUnit_DeleteRow", Unit) > 0);
 }
예제 #3
0
 public bool AddUnit(ViewModel.tblUnit Unit)
 {
     return(sqlHelper.RunProcedure("sp_tblUnit_Insert", Unit) > 0);
 }