Пример #1
0
 /// <summary>
 /// Author:         Josephine Gad
 /// Date Created:   06/Aug/2014
 /// Description:    Add or remove record from Overflow List
 /// ---------------------------------------------------------------
 public static void OverflowAddRemoveFromList(DataTable dt, bool IsRemovedBit, string UserId,
                                              String strLogDescription, String strFunction, String strPageName, DateTime DateGMT, DateTime CreatedDate,
                                              string sComment)
 {
     try
     {
         OverFlowBookingDAL.OverflowAddRemoveFromList(dt, IsRemovedBit, UserId,
                                                      strLogDescription, strFunction, strPageName, DateGMT, CreatedDate, sComment);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     finally
     {
         if (dt != null)
         {
             dt.Dispose();
         }
     }
 }
Пример #2
0
 /// <summary>
 /// Author:         Josephine Monteza
 /// Date Created:   07/Aug/2014
 /// Description:    Get records removed from Overflow List
 /// ---------------------------------------------------------------
 public static List <OverflowBooking2> OverflowGetRemovedList(DateTime Date, string UserId, int LoadType, int RegionID, int PortID)
 {
     return(OverFlowBookingDAL.OverflowGetRemovedList(Date, UserId, LoadType, RegionID, PortID));
 }