示例#1
0
 public void country_update(c_country t)
 {
     country_business db = new country_business();
 }
示例#2
0
        public List <V_country> country_Read()
        {
            country_business db = new country_business();

            return(db.Read());
        }
示例#3
0
        public V_country country_FilterRead(Expression <Func <V_country, bool> > filtre)
        {
            country_business db = new country_business();

            return(db.FilterRead(filtre));
        }
示例#4
0
        public void country_insert(c_country t)
        {
            country_business db = new country_business();

            db.Create(t);
        }
示例#5
0
        public void country_Delete(int id)
        {
            country_business db = new country_business();

            db.Delete(id);
        }