Beispiel #1
0
 public DataTable GetById(int id)
 {
     try
     {
         CountryDAL countryDAL = new CountryDAL();
         return(countryDAL.GetById(id));
     }
     catch (Exception)
     {
         throw;
     }
 }
 public static DataTable GetById(int Id)
 {
     return(CountryDAL.GetById(Id));
 }
Beispiel #3
0
 static public DataRow GetById(int id)
 {
     return(CountryDAL.GetById(id));
 }