Beispiel #1
0
        public void DeteleByKey(int did)
        {
            SAListDAL dd = new SAListDAL(_factoryID);

            dd.DeteteByKey(did);
        }
Beispiel #2
0
        public DataTable GetDataSet(string sql)
        {
            SAListDAL dd = new SAListDAL(_factoryID);

            return(dd.GetDataSet(sql));
        }
Beispiel #3
0
        public void Delete(int rkey)
        {
            SAListDAL dd = new SAListDAL(_factoryID);

            dd.Delete(rkey);
        }
Beispiel #4
0
        public void Update(SAList model)
        {
            SAListDAL dd = new SAListDAL(_factoryID);

            dd.Update(model);
        }
Beispiel #5
0
        public int Add(SAList model)
        {
            SAListDAL dd = new SAListDAL(_factoryID);

            return(dd.Add(model));
        }