Exemple #1
0
 private void LoadComputer()
 {
     try
     {
         HPS.BLL.ComputerBLL.BLLComputer_TFactory ComputerFactory = new HPS.BLL.ComputerBLL.BLLComputer_TFactory();
         DataTable ComputerDataTable = new DataTable();
         ComputerFactory.GetAll(ref ComputerDataTable);
         ComputerDataTable = ComputerDataTable.Select("deleted_bit=false").CopyToDataTable();
         this.ComputerGridView.DataSource = ComputerDataTable;
     }
     catch (System.Exception ex)
     {
         throw ex;
     }
 }