Пример #1
0
        public BookingDTO Insert(byte isPersonalCarUsed, string licencePlate, int idRequestBooking)
        {
            BookingDTO booking = new BookingDTO
            {
                id_Request_Booking   = idRequestBooking,
                is_Personal_Car_Used = isPersonalCarUsed,
                Licence_Plate        = licencePlate
            };

            return(bookingEngine.Insert(booking));
        }