예제 #1
0
 public bool Insert(Country country)
 {
     return(_countryDal.Add(country));
 }
예제 #2
0
        public void Add(Country entity)
        {
            CountryDAL dalObject = new CountryDAL();

            dalObject.Add(entity);
        }
예제 #3
0
 static public int Add(string country_name)
 {
     return(CountryDAL.Add(country_name));
 }