コード例 #1
0
 public DataSet CheckifCharteredBookingExists(DateTime frm, DateTime to)
 {
     try
     {
         if (bookingHandler == null)
         {
             bookingHandler = new BookingHandler();
         }
         return(bookingHandler.CheckifCharteredBookingExists(frm, to));
     }
     catch (Exception exp)
     {
         throw exp;
     }
 }