public void DeteleByKey(int did) { SAListDAL dd = new SAListDAL(_factoryID); dd.DeteteByKey(did); }
public DataTable GetDataSet(string sql) { SAListDAL dd = new SAListDAL(_factoryID); return(dd.GetDataSet(sql)); }
public void Delete(int rkey) { SAListDAL dd = new SAListDAL(_factoryID); dd.Delete(rkey); }
public void Update(SAList model) { SAListDAL dd = new SAListDAL(_factoryID); dd.Update(model); }
public int Add(SAList model) { SAListDAL dd = new SAListDAL(_factoryID); return(dd.Add(model)); }