public static Projectiterations Load(System.Nullable<int> SysId) {
     resourceSchema.Dal.Projectiterations dbo = null;
     try {
         dbo = new resourceSchema.Dal.Projectiterations();
         System.Data.DataSet ds = dbo.ProjectIterations_Select_One(SysId);
         Projectiterations obj = null;
         if (GlobalTools.IsSafeDataSet(ds)) {
             if ((ds.Tables[0].Rows.Count > 0)) {
                 obj = new Projectiterations();
                 obj.Fill(ds.Tables[0].Rows[0]);
             }
         }
         return obj;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 public static ProjectiterationsCollection GetAll() {
     resourceSchema.Dal.Projectiterations dbo = null;
     try {
         dbo = new resourceSchema.Dal.Projectiterations();
         System.Data.DataSet ds = dbo.ProjectIterations_Select_All();
         ProjectiterationsCollection collection = new ProjectiterationsCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Projectiterations obj = new Projectiterations();
                 obj.Fill(ds.Tables[0].Rows[i]);
                 if ((obj != null)) {
                     collection.Add(obj);
                 }
             }
         }
         return collection;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }