public void UpdateScheduleMessage(ShowSummaryDetailsDto showSummaryDetails)
 {
     var shows = new Shows(showSummaryDetails.ShowId) {ScheduleMessage = showSummaryDetails.ScheduleMessage};
     shows.Save();
 }
        public void UpdateShowDetails(ShowSummaryDetailsDto showSummaryDetails)
        {
            var shows = new Shows(showSummaryDetails.ShowId)
            {
                ShowName = showSummaryDetails.ShowName,
                ShowDate = showSummaryDetails.ShowDate,
                ClosingDate = showSummaryDetails.ClosingDate,
                Venue = showSummaryDetails.Venue,
                VenuePostcode = showSummaryDetails.Venuepostcode
            };

            shows.Save();
        }
 public void UpdateRunningPlanMessage(ShowSummaryDetailsDto showSummaryDetails)
 {
     var shows = new Shows(showSummaryDetails.ShowId)
     {
         RunningPlanMessage = showSummaryDetails.RunningPlanMessage
     };
     shows.Save();
 }