public ActionResult Booked(long id)
        {
            var       booked    = this._iBookingServices.GetBill(id);
            VM_Booked vM_Booked = ConvertVM.Bill_To_VMooked(booked);

            vM_Booked.BedName     = this._iBedServices.GetBedName(booked.BedId);
            vM_Booked.CusomerName = booked.Customer.LastMiddle + " " + booked.Customer.FirstName;
            //vM_Booked.Services = this._iServiceServices
            return(View(vM_Booked));
        }