Example #1
0
 public bool AddBookOrderDetail(List <BookOrderDetailModel> bookOrderDetailList, int orderId)
 {
     try
     {
         var check = homehlep.AddBookOrderDetailL(bookOrderDetailList, orderId);
         if (check)
         {
             return(true);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }