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