Ejemplo n.º 1
0
        public bool BookSlot(List <BookedSlot> bookings)
        {
            if (!ValidateBookingSlots(bookings))
            {
                return(false);
            }

            this.BookedSlots.AddRange(bookings);

            BookableBroker.Save(this);
            return(true);
        }
Ejemplo n.º 2
0
 public bool BookSlot(BookedSlot booking)
 {
     if (ValidateBookingSlot(booking))
     {
         if (this.BookedSlots == null)
         {
             this.BookedSlots = new List <BookedSlot>();
         }
         this.BookedSlots.Add(booking);
         BookableBroker.Save(this);
         return(true);
     }
     return(false);
 }
Ejemplo n.º 3
0
        public bool CancelBooking(Guid BookingId)
        {
            if (this.BookedSlots == null)
            {
                return(true);
            }
            var toRemove = this.BookedSlots.Find(x => x.Id == BookingId);

            if (toRemove == null)
            {
                return(true);
            }
            this.BookedSlots.Remove(toRemove);
            BookableBroker.Save(this);
            return(true);
        }