Exemplo n.º 1
0
        public static EmployeeObjectCollection DataTableToCollection(DataTable employees, string alias)
        {
            EmployeeObjectCollection objectsTotal;
            EmployeeObjectCollection objects = new EmployeeObjectCollection();

            try
            {
                IEnumerator enumerator = null;
                try
                {
                    enumerator = employees.Rows.GetEnumerator();
                    while (enumerator.MoveNext())
                    {
                        DataRow current = (DataRow)enumerator.Current;
                        objects.Add(EmployeeRowToObject(current, alias));
                    }
                }
                finally
                {
                    if (enumerator is IDisposable)
                    {
                        (enumerator as IDisposable).Dispose();
                    }
                }
                objectsTotal = objects;
            }
            catch (System.Exception exception1)
            {
                Exception innerException = exception1;
                throw new Exception(MethodBase.GetCurrentMethod().Name, innerException);
            }
            return(objectsTotal);
        }
Exemplo n.º 2
0
 public static EmployeeObjectCollection DataTableToCollection(DataTable employees, string alias)
 {
     EmployeeObjectCollection objectsTotal;
     EmployeeObjectCollection objects = new EmployeeObjectCollection();
     try
     {
         IEnumerator enumerator = null;
         try
         {
             enumerator = employees.Rows.GetEnumerator();
             while (enumerator.MoveNext())
             {
                 DataRow current = (DataRow)enumerator.Current;
                 objects.Add(EmployeeRowToObject(current, alias));
             }
         }
         finally
         {
             if (enumerator is IDisposable)
             {
                 (enumerator as IDisposable).Dispose();
             }
         }
         objectsTotal = objects;
     }
     catch (System.Exception exception1)
     {
         Exception innerException = exception1;
         throw new Exception(MethodBase.GetCurrentMethod().Name, innerException);
     }
     return objectsTotal;
 }