コード例 #1
0
ファイル: Bookings.cs プロジェクト: RahulAras007/StayBazar
 public static decimal GetRefundAmt(long bookingId)
 {
     DataLayer.Booking book = new DataLayer.Booking();
     return(book.GetRefundAmt(bookingId));
 }