Exemplo n.º 1
0
 public bool UpdateCountry(ViewModel.tblCountry country)
 {
     return(sqlHelper.RunProcedure("sp_tblCountry_Update", country) > 0);
 }
Exemplo n.º 2
0
 public bool DeleteCountry(ViewModel.tblCountry country)
 {
     return(sqlHelper.RunProcedure("sp_tblCountry_DeleteRow", country) > 0);
 }
Exemplo n.º 3
0
 public bool AddCountry(ViewModel.tblCountry country)
 {
     return(sqlHelper.RunProcedure("sp_tblCountry_Insert", country) > 0);
 }