Exemple #1
0
 public DataSet view()
 {
     try
     {
         DAL dbObject = new DAL();
         DataSet ds = dbObject.FetchView();
         return ds;
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message.ToString());
     }
 }