Ejemplo n.º 1
0
 /// <summary>
 /// Invokes Serialize method of DAL.
 /// </summary>
 public static void Serialize()
 {
     try
     {
         OnlineReturnDAL.Serialize();
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
 //Serialize
 public void Serialize()
 {
     try
     {
         OnlineReturnDAL onlineReturnDAL = new OnlineReturnDAL();
         onlineReturnDAL.Serialize();
     }
     catch (System.Exception ex)
     {
         throw new OnlineReturnException(ex.Message);
     }
 }