public static TimeentrylinksCollection Select_TimeEntryLinkss_By_ChildTimeEntrySysId(System.Nullable<int> ChildTimeEntrySysId) {
     resourceSchema.Dal.Timeentrylinks dbo = null;
     try {
         dbo = new resourceSchema.Dal.Timeentrylinks();
         System.Data.DataSet ds = dbo.Select_TimeEntryLinkss_By_ChildTimeEntrySysId(ChildTimeEntrySysId);
         TimeentrylinksCollection collection = new TimeentrylinksCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Timeentrylinks obj = new Timeentrylinks();
                 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();
         }
     }
 }