Exemplo n.º 1
0
 public BookingResponse PickUpItem(BookingDetailInfor bookingDetailInfor)
 {
     using (StageBitzDB dataContext = new StageBitzDB())
     {
         InventoryBL inventoryBL = new InventoryBL(dataContext);
         return(inventoryBL.PickUpItem(bookingDetailInfor.ItemBookingId, bookingDetailInfor.IsSelect, bookingDetailInfor.UserId));
     }
 }