Exemple #1
0
        /// <summary>
        /// the method to delete a booking from web client
        /// </summary>
        /// <param name="username">customers user-name</param>
        /// <param name="ER_ID">Escape-rooms id</param>
        /// <param name="bookTime">the time off the day for the booking </param>
        /// <param name="Bdate">the date for the booking</param>
        public void Deleteweb(string username, int ER_ID, TimeSpan bookTime, DateTime Bdate)
        {
            BookingController BCon = new BookingController();

            BCon.DeleteWeb(username, ER_ID, bookTime, Bdate);
        }