Exemplo n.º 1
0
 public bool Insert(Country country)
 {
     return(_countryDal.Add(country));
 }
Exemplo n.º 2
0
        public void Add(Country entity)
        {
            CountryDAL dalObject = new CountryDAL();

            dalObject.Add(entity);
        }
Exemplo n.º 3
0
 static public int Add(string country_name)
 {
     return(CountryDAL.Add(country_name));
 }