diff --git a/BedBrigade.Client/BedBrigade.Client.csproj b/BedBrigade.Client/BedBrigade.Client.csproj index 1bbf9f3c..bda2d188 100644 --- a/BedBrigade.Client/BedBrigade.Client.csproj +++ b/BedBrigade.Client/BedBrigade.Client.csproj @@ -11,9 +11,6 @@ - - PreserveNewest - diff --git a/BedBrigade.Client/Components/EvolHelper.cs b/BedBrigade.Client/Components/EvolHelper.cs index 399a6cfb..01576f44 100644 --- a/BedBrigade.Client/Components/EvolHelper.cs +++ b/BedBrigade.Client/Components/EvolHelper.cs @@ -300,7 +300,7 @@ public static async Task UpdateSchedule(IScheduleDataService? _svcSchedul mySchedule.VolunteersRegistered++; if (CarType != VehicleType.NoCar) { - mySchedule.VehiclesDeliveryRegistered++; + mySchedule.DeliveryVehiclesRegistered++; } } break; @@ -311,9 +311,9 @@ public static async Task UpdateSchedule(IScheduleDataService? _svcSchedul { mySchedule.VolunteersRegistered--; } - if (CarType != VehicleType.NoCar && mySchedule.VehiclesDeliveryRegistered > 0) + if (CarType != VehicleType.NoCar && mySchedule.DeliveryVehiclesRegistered > 0) { - mySchedule.VehiclesDeliveryRegistered--; + mySchedule.DeliveryVehiclesRegistered--; } } break; diff --git a/BedBrigade.Client/Components/Pages/Volunteer.razor b/BedBrigade.Client/Components/Pages/Volunteer.razor deleted file mode 100644 index f4fa4414..00000000 --- a/BedBrigade.Client/Components/Pages/Volunteer.razor +++ /dev/null @@ -1,32 +0,0 @@ -@page "/volunteer" - - - - - - - diff --git a/BedBrigade.Client/Components/Pages/Volunteer.razor.cs b/BedBrigade.Client/Components/Pages/Volunteer.razor.cs deleted file mode 100644 index fd04d513..00000000 --- a/BedBrigade.Client/Components/Pages/Volunteer.razor.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Microsoft.AspNetCore.Components; -using Microsoft.JSInterop; - -namespace BedBrigade.Client.Components.Pages -{ - public partial class Volunteer : ComponentBase - { - //[Inject] private IJSRuntime _js { get; set; } - - //protected override async Task OnAfterRenderAsync(bool firstRender) - //{ - // //Collapse the mobile menu - // await _js.InvokeVoidAsync("AddRemoveClass.RemoveClass", "navbarResponsive", "show"); - //} - } -} diff --git a/BedBrigade.Client/Components/Pages/VolunteerSignUp.razor b/BedBrigade.Client/Components/Pages/VolunteerSignUp.razor new file mode 100644 index 00000000..d3a435df --- /dev/null +++ b/BedBrigade.Client/Components/Pages/VolunteerSignUp.razor @@ -0,0 +1,247 @@ +@page "/volunteer" + + + + +
+ +
+
+
+

If you like to volunteer with Bed Brigade, please select our Location and complete the Volunteer registration form

+
+
+ + +
+ +
+ + + + +
+ +
+
+
+ Bed Brigade Location Events +
+ +
+
+ + + + + +
+
+
+ @if (SelectedEvent != null) + { +
+ +
+ + +
+ @if (SelectedEvent.EventType.ToString() != SelectedEvent.EventName) + { +
+ + +
+ } + @if (!String.IsNullOrEmpty(SelectedEvent.GroupName)) + { +
+ + +
+ } +
+ + +
+
+ + +
+ + @if (!string.IsNullOrEmpty(SelectedEvent.EventNote)) + { +
+ + +
+ } +
+ } +
+
+ @LocationEventsAlert +
+
+
+ @if (AvailableVolunteerEvents) + { +
+
+
Volunteer Information
+
+
+ +
+
+ @ExistingMessage +
+
+ + +
+ +
+
+
+ + +
+ +
+
+
+ + +
+ +
+ @BootstrapHelper.GetBootstrapMessage("warning", "This email is already registered.", "", false, "compact"); +
+
+
+
+ + +
+ +
+
+
+ + +
+
+ + +
+
+ +
+
+ + @if (SelectedEvent != null && SelectedEvent.EventType == EventType.Delivery) + { +
+
+
+ Delivery Vehicle +
+
+
+
+ @BootstrapHelper.GetBootstrapMessage("help", "Do you have a vehicle that can carry a bed and mattress?", "", false, "compact") +
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+
+
+
+ } + } +
+ + @if (AvailableVolunteerEvents) + { +
+
 
+
+
+
+ +
+
+ +
+
+
+
+
+ Submit Volunteer Registration +
+
+
+
+ } +
+ +
+ +
@FinalMessage
+ + + + + + + + diff --git a/BedBrigade.Client/Components/Pages/VolunteerSignUp.razor.cs b/BedBrigade.Client/Components/Pages/VolunteerSignUp.razor.cs new file mode 100644 index 00000000..680efe3f --- /dev/null +++ b/BedBrigade.Client/Components/Pages/VolunteerSignUp.razor.cs @@ -0,0 +1,487 @@ +using Syncfusion.Blazor.DropDowns; +using System.Diagnostics; +using BedBrigade.Data.Models; +using Microsoft.AspNetCore.Components; +using BedBrigade.Data.Services; +using Microsoft.AspNetCore.Components.Forms; +using BedBrigade.Common.Logic; +using BedBrigade.Common.Enums; +using Microsoft.AspNetCore.WebUtilities; +using Serilog; +using Microsoft.AspNetCore.Mvc; +using Azure; + +namespace BedBrigade.Client.Components.Pages +{ + public partial class VolunteerSignUp : ComponentBase + { + #region Declaration + + [Inject] private ILocationDataService? _svcLocation { get; set; } + [Inject] private IVolunteerDataService? _svcVolunteer { get; set; } + [Inject] private IScheduleDataService? _svcSchedule { get; set; } + [Inject] private IVolunteerEventsDataService? _svcVolunteerEvents { get; set; } + [Inject] private NavigationManager? _nav { get; set; } + + private BedBrigade.Data.Models.Volunteer? newVolunteer; + private List LocationEvents { get; set; } = new List(); // Selected Location Events + private Schedule? SelectedEvent { get; set; } // selected Event + + private List VolunteerRegister { get; set; } = new List(); // Volunteer/Events Registration + + private SearchLocation? SearchLocation; + + private const string DisplayNone = "none"; + private const string FormMessage = "Please fill out all the mandatory fields marked with an asterisk (*)."; + private const string FormNotCompleted = FormMessage; //"The Bed Request Form is not completed!
"+FormMessage; + + private string DisplayForm = DisplayNone; + private string DisplayAddressMessage = DisplayNone; + private string DisplaySearch = DisplayNone; + private string DisplayExId = DisplayNone; + private string DisplayEventDetail = DisplayNone; + private string DisplayLocationEvents = DisplayNone; + private string DisplayLocationStatusMessage = DisplayNone; + private string DisplayExistingMessage = DisplayNone; + private string DisplayEmailMessage = DisplayNone; + private MarkupString ExistingMessage = BootstrapHelper.GetBootstrapMessage("info", "Please enter your email address and we will check your data in our Database.", "", false, "compact"); + private MarkupString LocationEventsAlert = BootstrapHelper.GetBootstrapMessage("warning", "Sorry, there are no available volunteer events in the selected location.
Please select another location or try again later.", "", false); + + + private MarkupString FinalMessage; + private string SubmitAlertMessage = string.Empty; + private string ResultDisplay = DisplayNone; + + + private ReCAPTCHA? reCAPTCHAComponent; + private bool ValidReCAPTCHA = false; + private bool ServerVerificatiing = false; + private bool EditFormStatus = false; // true if not errors + private int selectedLocation = 0; + private bool isNewVolunteer = false; + + private bool DisableSubmitButton => !ValidReCAPTCHA || ServerVerificatiing; + private EditContext? EC { get; set; } + + private string? _locationQueryParm; + private string MyMessage = string.Empty; + private string MyMessageDisplay = DisplayNone; + private bool AvailableVolunteerEvents = false; + private SfDropDownList ddlVolunteerEvents; + + private string cssClass { get; set; } = "e-outline"; + protected Dictionary DescriptionHtmlAttribute { get; set; } = new Dictionary() + { + { "rows", "4" }, + }; + + protected Dictionary DropDownHtmlAttribute = new Dictionary() + { + { "font-weight", "bold" }, + }; + + protected Dictionary htmlattributeSize = new Dictionary() + { + { "maxlength", "2" }, + }; + + #endregion + #region Initialization + + protected override void OnInitialized() + { + //Yes, this has to be here instead of in OnInitializedAsync + var uri = _nav.ToAbsoluteUri(_nav.Uri); + + if (QueryHelpers.ParseQuery(uri.Query).TryGetValue("location", out var locationQueryParm)) + { + _locationQueryParm = locationQueryParm; + } + } + + protected override async Task OnInitializedAsync() + { + newVolunteer = new BedBrigade.Data.Models.Volunteer(); + EC = new EditContext(newVolunteer); + } + + protected override async Task OnAfterRenderAsync(bool firstRender) + { + if (firstRender) + { + if (!string.IsNullOrEmpty(_locationQueryParm)) + { + await SearchLocation.ForceLocationByName(_locationQueryParm); + await HandleSelectedValueChanged(SearchLocation.ddlValue.ToString()); + DisplayForm = ""; + StateHasChanged(); + } + else + { + DisplaySearch = ""; + StateHasChanged(); + } + } + } + + private void CheckChildData(string? searchZipCode) // from Search Location Component + { // usually data is zip code + if (searchZipCode != null && searchZipCode.Trim().Length == 5) + { + DisplayForm = ""; + HandleSelectedValueChanged(SearchLocation.ddlValue.ToString()); + } + } // check child component data + + + #endregion + + #region Validation & Events + + + private async Task HandleSelectedValueChanged(string locationIdString) + { + selectedLocation = Convert.ToInt32(locationIdString); + await GetLocationEvents(); + StateHasChanged(); + } + + private void onPreviousVolunteer(Microsoft.AspNetCore.Components.ChangeEventArgs args) + { + DisplayExistingMessage = DisplayNone; + if (newVolunteer.IHaveVolunteeredBefore) + { + DisplayExistingMessage = ""; + } + } + + private async Task GetLocationEvents() + { + try + { + ddlVolunteerEvents.Value = -1; + DisplayLocationEvents = DisplayNone; + DisplayLocationStatusMessage = DisplayNone; + SelectedEvent = null; + DisplayEventDetail = DisplayNone; + + var response = await _svcSchedule.GetAvailableSchedulesByLocationId(selectedLocation); + + if (response.Success && response.Data != null) + { + LocationEvents = response.Data; + } + else + { + Log.Logger.Error($"Error GetLocationEvents, response: {response.Message}"); + ShowMessage(response.Message); + } + + if (LocationEvents.Count > 0) + { + DisplayLocationEvents = ""; + AvailableVolunteerEvents = true; + } + else + { + DisplayLocationStatusMessage = ""; + AvailableVolunteerEvents = false; + } + } + catch (Exception ex) + { + Log.Logger.Error(ex, $"Error GetLocationEvents: {ex.Message}"); + ShowMessage(ex.Message); + } + + }//GetLocationEvents + + private void ChangeEvent(ChangeEventArgs args) + { + if (args.Value > 0) + { + var intSchedulId = args.Value; + SelectedEvent = LocationEvents.Where(item => item.ScheduleId == intSchedulId).FirstOrDefault(); + DisplayEventDetail = ""; + } + } + + private void ClearMessage() + { + MyMessage = string.Empty; + MyMessageDisplay = DisplayNone; + } + private void ShowMessage(string message) + { + MyMessage = message; + MyMessageDisplay = "block"; + } + + private bool IsValid() + { + ClearMessage(); + + bool formIsValid = EC.Validate(); + + if (!formIsValid) + { + ShowMessage(FormNotCompleted); + return false; + } + + bool isPhoneValid = Validation.IsValidPhoneNumber(newVolunteer.Phone); + + if (!isPhoneValid) + { + ShowMessage("Please enter a valid phone number."); + return false; + } + + var emailResult = Validation.IsValidEmail(newVolunteer.Email); + if (!emailResult.IsValid) + { + ShowMessage(emailResult.UserMessage); + return false; + } + + if (SelectedEvent == null) + { + ShowMessage("Please select an event."); + return false; + } + + if (!ValidReCAPTCHA) + { + ShowMessage("Please check reCAPTCHA"); + return false; + } + + return true; + } + + + + + + + + + + #endregion + + + #region reCaptcha + + + private void OnSuccess() + { + ValidReCAPTCHA = true; + } + + private void OnExpired() + { + ValidReCAPTCHA = false; + } + + #endregion + #region SaveVolunteer + + + private async Task SaveVolunteer() + { + if (!IsValid()) + { + return; + } + + await UpdateDatabase(); + } + + private async Task UpdateDatabase() + { + bool updateVolunteerSuccess = await UpdateVolunteer(); + + if (!updateVolunteerSuccess) + return; + + + bool scheduleVolunteerSuccess= await ScheduleVolunteer(); + + if (!scheduleVolunteerSuccess) + return; + + bool updateCountSuccess = await UpdateScheduleVolunteerCount(); + + if (!updateCountSuccess) + return; + + await CreateFinalMessage(); + } + + private async Task ScheduleVolunteer() + { + try + { + + VolunteerEvent newRegister = new VolunteerEvent(); + newRegister.ScheduleId = SelectedEvent.ScheduleId; + newRegister.VolunteerId = newVolunteer.VolunteerId; + newRegister.LocationId = selectedLocation; + newRegister.VolunteerEventNote = newVolunteer.Message; + var createResult = await _svcVolunteerEvents.CreateAsync(newRegister); + + if (!createResult.Success) + { + ShowMessage(createResult.Message); + Log.Logger.Error($"Error ScheduleVolunteer: {createResult.Message}"); + return false; + } + + return true; + } + catch (Exception ex) + { + Log.Logger.Error(ex, $"Error ScheduleVolunteer: {ex.Message}"); + ShowMessage(ex.Message); + return false; + } + } + + private async Task UpdateVolunteer() + { + newVolunteer.LocationId = selectedLocation; + + try + { + var existingVolunteerResult = await _svcVolunteer.GetByEmail(newVolunteer.Email); + + if (existingVolunteerResult.Success && existingVolunteerResult.Data != null) + { + var existingVolunteer = existingVolunteerResult.Data; + existingVolunteer.LocationId = newVolunteer.LocationId; + existingVolunteer.IHaveVolunteeredBefore = true; + existingVolunteer.FirstName = newVolunteer.FirstName; + existingVolunteer.LastName = newVolunteer.LastName; + existingVolunteer.Email = newVolunteer.Email; + existingVolunteer.Phone = newVolunteer.Phone; + existingVolunteer.OrganizationOrGroup = newVolunteer.OrganizationOrGroup; + existingVolunteer.Message = newVolunteer.Message; + + if (SelectedEvent.EventType == EventType.Delivery) + { + existingVolunteer.VehicleType = newVolunteer.VehicleType; + } + + var updateResult = await _svcVolunteer.UpdateAsync(existingVolunteer); + + if (!updateResult.Success) + { + Log.Logger.Error($"Error UpdateVolunteer, updateResult: {updateResult.Message}"); + ShowMessage(updateResult.Message); + return false; + } + newVolunteer = updateResult.Data; + } + else + { + isNewVolunteer = true; + var createResult = await _svcVolunteer.CreateAsync(newVolunteer); + + if (!createResult.Success) + { + Log.Logger.Error($"Error UpdateVolunteer, updateResult: {createResult.Message}"); + ShowMessage(createResult.Message); + return false; + } + } + } + catch (Exception ex) + { + + Log.Logger.Error(ex, $"Error UpdateVolunteer: {ex.Message}"); + ShowMessage(ex.Message); + return false; + } + + return true; + } + + + + private async Task CreateFinalMessage() + { + string ResultTitle; + string ResultSubTitle = string.Empty; + string ResultMessage = string.Empty; + + DisplaySearch = DisplayNone; + DisplayForm = DisplayNone; + + var locationResult = await _svcLocation.GetByIdAsync(selectedLocation); + string selectedLocationName = locationResult.Data.Name; + + if (isNewVolunteer) + { + ResultTitle = "Welcome, " + newVolunteer.FullName + ".
"; + ResultSubTitle = "We appreciate your wish to join the Bed Brigade Volunteer Team. "; + } + else // new Volunteer + { + ResultTitle = "Welcome back, " + newVolunteer.FullName + "!"; + ResultSubTitle = "Thank you so much for your enthusiasm and genuine commitment to assisting us. "; + } + + ResultMessage += "We received your registration as a participant to scheduled Event:
" + SelectedEvent.EventName + ", "; + ResultMessage += SelectedEvent.EventDateScheduled.ToShortDateString() + " " + SelectedEvent.EventDateScheduled.ToShortTimeString(); + ResultMessage += " to " + SelectedEvent.EventDateScheduled.AddHours(SelectedEvent.EventDurationHours) + .ToShortTimeString(); + ResultMessage += "
at Bed Brigade Location: " + selectedLocationName; + ResultMessage += "
We will look forward to seeing you!
"; + + ResultMessage += "Thank you!
" + selectedLocationName; + ResultDisplay = ""; + FinalMessage = BootstrapHelper.GetBootstrapJumbotron(ResultTitle, ResultSubTitle, ResultMessage); + } // Create Final Message + + private async Task UpdateScheduleVolunteerCount() + { + try + { + var existingResult = await _svcSchedule.GetByIdAsync(SelectedEvent.ScheduleId); + if (!existingResult.Success) + { + ShowMessage(existingResult.Message); + return false; + } + + var existingSchedule = existingResult.Data; + existingSchedule.VolunteersRegistered += 1; + + if (newVolunteer.VehicleType != VehicleType.NoCar) + { + existingSchedule.DeliveryVehiclesRegistered += 1; + } + + var updateResult = await _svcSchedule.UpdateAsync(existingSchedule); + + if (!updateResult.Success) + { + Log.Logger.Error($"Error UpdateScheduleVolunteerCount, updateResult: {updateResult.Message}"); + ShowMessage(updateResult.Message); + return false; + } + } + catch (Exception ex) + { + Log.Logger.Error(ex, $"Error UpdateScheduleVolunteerCount: {ex.Message}"); + ShowMessage(ex.Message); + return false; + } + + return true; + } + + #endregion + + } +} diff --git a/BedBrigade.Client/Components/ReCAPTCHA.razor.cs b/BedBrigade.Client/Components/ReCAPTCHA.razor.cs index bda8a01c..59ab2553 100644 --- a/BedBrigade.Client/Components/ReCAPTCHA.razor.cs +++ b/BedBrigade.Client/Components/ReCAPTCHA.razor.cs @@ -1,15 +1,8 @@ using System.ComponentModel; -using System.Diagnostics; using Microsoft.JSInterop; using Microsoft.AspNetCore.Components; -using System.Text.Json; -using System; -using System.Threading.Tasks; using BedBrigade.Common.Constants; using BedBrigade.Common.Enums; -using Microsoft.Extensions.Options; -using Microsoft.Extensions.Configuration; -using Microsoft.AspNetCore.Http.HttpResults; using BedBrigade.Data.Services; using BedBrigade.Common.Models; @@ -36,28 +29,15 @@ public partial class ReCAPTCHA public string ResultPrint = String.Empty; - private Dictionary dctConfiguration { get; set; } = new Dictionary(); - - protected override async Task OnInitializedAsync() - { - var dataConfiguration = await _svcConfiguration.GetAllAsync(ConfigSection.System); - if (dataConfiguration.Success && dataConfiguration != null) - { - dctConfiguration = dataConfiguration.Data.ToDictionary(keySelector: x => x.ConfigurationKey, elementSelector: x => x.ConfigurationValue); - } - } // Init protected override async Task OnAfterRenderAsync(bool firstRender) { if (firstRender) { - SiteKey = dctConfiguration[ConfigNames.ReCaptchaSiteKey].ToString(); - // Debug.WriteLine("Site Key: " + SiteKey); - + SiteKey = await _svcConfiguration.GetConfigValueAsync(ConfigSection.System, ConfigNames.ReCaptchaSiteKey); await JS.InvokeAsync("My.reCAPTCHA.init"); this.WidgetId = await JS.InvokeAsync("My.reCAPTCHA.render", DotNetObjectReference.Create(this), UniqueId, SiteKey); - //ResultPrint = "SiteKey OK"; } } @@ -92,7 +72,7 @@ public ValueTask GetResponseAsync() var url = "https://www.google.com/recaptcha/api/siteverify"; var content = new FormUrlEncodedContent(new Dictionary { - { "secret", dctConfiguration[ConfigNames.ReCaptchaSecret].ToString() }, + { "secret", SiteKey }, { "response", reCAPTCHAResponse} }); diff --git a/BedBrigade.Client/Components/ScheduleGrid.razor b/BedBrigade.Client/Components/ScheduleGrid.razor index 9e857249..f77b7376 100644 --- a/BedBrigade.Client/Components/ScheduleGrid.razor +++ b/BedBrigade.Client/Components/ScheduleGrid.razor @@ -8,91 +8,91 @@ using BedBrigade.Common.Logic; -
-
 
-
-
-

Event Scheduler

-
-
-
Show Schedules 
-
-
- - - - -
-
-  @userRole  - @if (isLocationAdmin) - { - [Location: @userLocationName] - } -
@userName -
-
-
+
+
 
-
- - - - - - - - - @{ - @HeaderTitle - } - - -
-
- * -
-
- - -
-
-
- -
+ - - + + - - - - @{ - - - - - } - - - - - - - - + + + + @{ + + + + + } + + + + + + + + - - - - - -
+ + + +
-
diff --git a/BedBrigade.Client/Components/ScheduleGrid.razor.cs b/BedBrigade.Client/Components/ScheduleGrid.razor.cs index 2c213d86..afeb0774 100644 --- a/BedBrigade.Client/Components/ScheduleGrid.razor.cs +++ b/BedBrigade.Client/Components/ScheduleGrid.razor.cs @@ -87,12 +87,16 @@ protected override async Task OnInitializedAsync() private async Task SetInitialFilter() { - if (lstSchedules != null && lstSchedules.Count > 0 && Grid != null) + if (Grid != null) { - Grid.SelectedRowIndex = 0; - } + if (lstSchedules != null && lstSchedules.Count > 0 && Grid != null) + { + Grid.SelectedRowIndex = 0; + } - await Grid.FilterByColumnAsync(EventDate, "greaterthanorequal", DateTime.Today); // default grid filter: future events + await Grid.FilterByColumnAsync(EventDate, "greaterthanorequal", + DateTime.Today); // default grid filter: future events + } } diff --git a/BedBrigade.Client/Components/SearchLocation.razor.cs b/BedBrigade.Client/Components/SearchLocation.razor.cs index 21491067..8792d7eb 100644 --- a/BedBrigade.Client/Components/SearchLocation.razor.cs +++ b/BedBrigade.Client/Components/SearchLocation.razor.cs @@ -25,7 +25,6 @@ public partial class SearchLocation : ComponentBase SfMaskedTextBox maskObj; public int ddlValue { get; set; } = 0; - public string selectedLocationName { get; set; } = string.Empty; public string InputID = "input-id"; @@ -47,8 +46,6 @@ public partial class SearchLocation : ComponentBase public async Task ChangeLocation(ChangeEventArgs args) { - //Debug.WriteLine("ValueChange event has been triggered !!"); - //selectedLocationName = args.ItemData.; await CallLocationChanged(); } diff --git a/BedBrigade.Client/Components/VolunteerForm.razor b/BedBrigade.Client/Components/VolunteerForm.razor deleted file mode 100644 index d7167fad..00000000 --- a/BedBrigade.Client/Components/VolunteerForm.razor +++ /dev/null @@ -1,231 +0,0 @@ -@using BedBrigade.Common.Logic -@using System.Globalization - - - - -
- -
-
-
-

If you like to volunteer with Bed Brigade, please select our Location and complete the Volunteer registration form

-
-
- - -
- -
- - - - -
- -
-
-
Volunteer Information
-
-
- -
-
- @ExistingMessage -
-
- - -
- -
-
-
- - -
- -
-
-
- - -
- -
- @BootstrapHelper.GetBootstrapMessage("warning", "This email is already registered.", "", false,"compact"); -
-
-
-
- - -
- -
-
-
- - -
-
- - -
-
- @BootstrapHelper.GetBootstrapMessage("info", "Please tell us about any preferences, restrictions & limitations you have when it comes to volunteering tasks.", "", false,"compact") -
-
- -
-
- -
-
-
Delivery Vehicles -
-
-
-
- @BootstrapHelper.GetBootstrapMessage("help", "Do you have a vehicle that can carry a bed and mattress?","", false, "compact") -
- -
-
-
- - @BootstrapHelper.GetBootstrapMessage("info", "Minivan with seats removed or folded into the floor (Honda Odyseey, Toyota Sienna, Chrysler Pacifica, Kia Carnival, etc.)","", false, "compact") -
-
-
- - @BootstrapHelper.GetBootstrapMessage("info", "Chevrolet Suburban, Chevrolet Tahoe, Ford Expedition, GMC Yukon, Toyota Sequoia, Nissan Armada, etc.","", false, "compact") -
-
-
- - @BootstrapHelper.GetBootstrapMessage("info", "A pickup truck with a camper shell or with a canopy.","", false, "compact") -
-
-
-
-
-
-
- -
-
- Bed Brigade Location Events -
-
-
- - - - - -
-
-
-
- -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
-
- - -
-
- @BootstrapHelper.GetBootstrapMessage("info", "Please leave a comment/note about your participation to the event and/or check box below.", "", false,"compact") -
-
- -
-
-
-
- @LocationEventsAlert -
-
-
- - -
-
-
 
-
-
-
-
- -
-
-
-
-
- -
-
-
- @((MarkupString)NotificationMessage) -
-
-
-
-
-
- Submit Volunteer Registration -
-
-
-
- -
- -
- -
@FinalMessage
- - - - - - diff --git a/BedBrigade.Client/Components/VolunteerForm.razor.cs b/BedBrigade.Client/Components/VolunteerForm.razor.cs deleted file mode 100644 index 98638c58..00000000 --- a/BedBrigade.Client/Components/VolunteerForm.razor.cs +++ /dev/null @@ -1,614 +0,0 @@ -using Syncfusion.Blazor; -using Syncfusion.Blazor.Inputs; -using Syncfusion.Blazor.DropDowns; -using System; -using System.Text.RegularExpressions; -using System.Text.Json; -using System.Diagnostics; -using ChangeEventArgs = Microsoft.AspNetCore.Components.ChangeEventArgs; -using BedBrigade.Data.Models; - -using System.ComponentModel.DataAnnotations; -using Microsoft.AspNetCore.Components; -using BedBrigade.Data.Services; -using Microsoft.AspNetCore.Components.Web; -using Microsoft.AspNetCore.Components.Forms; -using System.Data.Entity; -using Syncfusion.Blazor.RichTextEditor; -using System.Data.Entity.Infrastructure; -using BedBrigade.Common.Logic; -using BedBrigade.Common.Enums; - - -namespace BedBrigade.Client.Components -{ - public partial class VolunteerForm : ComponentBase - { - - #region Declaration - - [Inject] private ILocationDataService? _svcLocation { get; set; } - [Inject] private IVolunteerDataService? _svcVolunteer { get; set; } - [Inject] private IScheduleDataService? _svcSchedule { get; set; } - [Inject] private IVolunteerEventsDataService? _svcVolunteerEvents { get; set; } - - - private BedBrigade.Data.Models.Volunteer? newVolunteer; - - private List Locations { get; set; } = new List(); - private List Events { get; set; } = new List(); // Full List of Events - private List Volunteers { get; set; } = new List(); // Full List of registered Volunteers - private List LocationEvents { get; set; } = new List(); // Selected Location Events - private Schedule? SelectedEvent { get; set; } = new Schedule(); // selected Event - - private List VolunteerRegister { get; set; } = new List(); // Volunteer/Events Registration - - private SearchLocation? SearchLocation; - - private const string DisplayNone = "none"; - private const string AlertDanger = "alert alert-danger"; - private const string FormMessage = "Please fill out all the mandatory fields marked with an asterisk (*)."; - private const string FormNotCompleted = FormMessage; //"The Bed Request Form is not completed!
"+FormMessage; - private const string FormCompleted = "The Volunteer Form is completed!"; - private const string AlertSuccess = "success"; - private const string AlertWarning = "warning"; - - private string DisplayForm = DisplayNone; - private string DisplayAddressMessage = DisplayNone; - private string DisplaySearch = ""; - private string DisplayExId = DisplayNone; - private string DisplayEventDetail = DisplayNone; - private string DisplayLocationEvents = DisplayNone; - private string DisplayLocationStatusMessage = DisplayNone; - private string DisplayExistingMessage = DisplayNone; - private string DisplayEmailMessage = DisplayNone; - private MarkupString ExistingMessage = BootstrapHelper.GetBootstrapMessage("info", "Please enter your email address and we will check your data in our Database.", "", false,"compact"); - private MarkupString LocationEventsAlert = BootstrapHelper.GetBootstrapMessage("warning", "Sorry, no available volunteer events in selected Location.
Please select other location or try again later.", "", false); - public int NumericValue { get; set; } = 1; - - private MarkupString FinalMessage; - private MarkupString NotificationMessage = BootstrapHelper.GetBootstrapMessage("info", FormMessage,"",false); - private string SubmitAlertMessage = string.Empty; - private string AlertDisplay = DisplayNone; - private string ResultDisplay = DisplayNone; - private string NotificationDisplay = string.Empty; - private string AlertType = AlertDanger; - - private ReCAPTCHA? reCAPTCHAComponent; - private bool ValidReCAPTCHA = false; - private bool ServerVerificatiing = false; - private bool EditFormStatus = false; // true if not errors - private int selectedLocation = 0; - private string selectedLocationName = string.Empty; - private string selectedEventName = string.Empty; - private int EventCutOffTimeDays = 4; // take from Configuration - private string VolunteerEventNote = string.Empty; - private int exVolunteerId = 0; - private bool isRegisterNow = false; - - private bool DisableSubmitButton => !ValidReCAPTCHA || ServerVerificatiing; - private EditContext? EC { get; set; } - - - private string cssClass { get; set; } = "e-outline"; - protected Dictionary DescriptionHtmlAttribute { get; set; } = new Dictionary() - { - { "rows", "4" }, - }; - - protected Dictionary DropDownHtmlAttribute = new Dictionary() - { - { "font-weight", "bold" }, - }; - - protected Dictionary htmlattributeSize = new Dictionary() - { - { "maxlength", "2" }, - }; - - #endregion - #region Initialization - - protected override async Task OnInitializedAsync() - { - newVolunteer = new BedBrigade.Data.Models.Volunteer(); - EC = new EditContext(newVolunteer); - //messageStore = new ValidationMessageStore(EC); - base.OnInitialized(); - - var dataEvents = await _svcSchedule.GetAllAsync(); - if (dataEvents.Success && dataEvents != null) - { - Events = dataEvents.Data; - } - - var dataRegister = await _svcVolunteerEvents.GetAllAsync(); - if(dataRegister.Success && dataRegister != null) - { - VolunteerRegister = dataRegister.Data; - } - - var dataVolunteers = await _svcVolunteer.GetAllAsync(); - if (dataVolunteers != null) - { - Volunteers = dataVolunteers.Data.ToList(); - } - - var dataLocations = await _svcLocation.GetAllAsync(); - if (dataLocations != null) - { - Locations = dataLocations.Data.ToList(); - } - - } // Init - - private void CheckChildData(string SearchZipCode) // from Search Location Component - { // usually data is zip code - if (SearchZipCode != null && SearchZipCode.Trim().Length == 5) - { - DisplayForm = ""; - selectedLocation = SearchLocation.ddlValue; - selectedLocationName = Locations.SingleOrDefault(item => item.LocationId == selectedLocation).Name; - GetLocationEvents(); - - } - } // check child component data - - - #endregion - - #region Validation & Events - - - private void HandleSelectedValueChanged(string strLocationId) - { - //Select Location in drop-down list - selectedLocation = Convert.ToInt32(strLocationId); - selectedLocationName = Locations.SingleOrDefault(item => item.LocationId == selectedLocation).Name; - GetLocationEvents(); - - } - - private void onPreviousVolunteer(Microsoft.AspNetCore.Components.ChangeEventArgs args) - { - DisplayExistingMessage = DisplayNone; - if (newVolunteer.IHaveVolunteeredBefore) - { - DisplayExistingMessage = ""; - } - } - - private void RegisterNow(Microsoft.AspNetCore.Components.ChangeEventArgs args) - { - if (isRegisterNow) - { - // GetLocationEvents(); - } - else - { - //DisplayLocationEvents = DisplayNone; - //DisplayLocationStatusMessage = DisplayNone; - } - } - - private void GetLocationEvents() - { // Filter Events to selected Location & Events with available dates & registered Volunteers < VolunteersMax - try - { - - - DisplayLocationEvents = DisplayNone; - DisplayLocationStatusMessage = DisplayNone; - // Date Filtration - LocationEvents = Events - .Where(item => item.LocationId == selectedLocation) // Location - .Where(item=>item.EventStatus == EventStatus.Scheduled) // Scheduled Events - .Where(item => item.EventDateScheduled > DateTime.Today.AddDays(EventCutOffTimeDays)) // CutOffDays - .ToList(); - - // update volunteer count - - foreach (var item in LocationEvents) - { - item.VolunteersRegistered = VolunteerRegister - .Where(reg => reg.LocationId == selectedLocation) - .Where(reg => reg.ScheduleId == item.ScheduleId) - .ToList().Count(); - - } - - // additional filter to registered volunteers - - LocationEvents = LocationEvents - .Where(item => item.VolunteersRegistered < item.VolunteersMax) - .ToList(); - - //EnumHelper.OutputObjectProperty(LocationEvents); - - - SelectedEvent = new Schedule(); - DisplayEventDetail = DisplayNone; - - if (LocationEvents.Count > 0) - { - DisplayLocationEvents = ""; - } - else - { - DisplayLocationStatusMessage = ""; - } - } - catch(Exception ex) - { - Debug.WriteLine(ex.Message); - } - - }//GetLocationEvents - - private void ChangeEvent(ChangeEventArgs args) - { - var intSchedulId = args.Value; - SelectedEvent = LocationEvents.Where(item => item.ScheduleId == intSchedulId).FirstOrDefault(); - selectedEventName = SelectedEvent.EventName; - DisplayEventDetail = ""; - } - - private void RunValidation() - { - - NotificationMessage = (MarkupString)" "; - DisplayAddressMessage = DisplayNone; - NotificationDisplay = ""; - EditFormStatus = EC.Validate(); // manually trigger the validation here - - FormValidation(); - } // Run Validation - - private bool CheckEmailAddress(string eMail) - { - DisplayExId = DisplayNone; - var bEmailFound = false; - - // return true if found email address - var exVolunteer = Volunteers.Where(item => item.Email == eMail).FirstOrDefault(); - if (exVolunteer != null) - { - bEmailFound = true; - if (newVolunteer.IHaveVolunteeredBefore) // Volunteer found by eMail - { - exVolunteerId = exVolunteer.VolunteerId; - newVolunteer.VolunteerId = exVolunteer.VolunteerId; - newVolunteer.CreateDate = exVolunteer?.CreateDate; - newVolunteer.CreateUser= exVolunteer?.CreateUser; - newVolunteer.UpdateDate = exVolunteer?.UpdateDate; - newVolunteer.LocationId = exVolunteer.LocationId; - DisplayExId = ""; - // load data to form - // if (newVolunteer.FirstName.Trim().Length == 0 || newVolunteer.LastName.Trim().Length == 0) - // { // Copy all properties! - // newVolunteer.VolunteerId = exVolunteer.VolunteerId; - // newVolunteer.FirstName = exVolunteer.FirstName; - // newVolunteer.LastName = exVolunteer.LastName; - // newVolunteer.Email = exVolunteer.Email; - // newVolunteer.Phone = exVolunteer.Phone; - // newVolunteer.Message = exVolunteer.Message; - // newVolunteer.OrganizationOrGroup = exVolunteer.OrganizationOrGroup; - //newVolunteer.IHaveAMinivan = exVolunteer.IHaveAMinivan; - // newVolunteer.IHaveAnSUV = exVolunteer.IHaveAnSUV; - // newVolunteer.IHaveAPickupTruck = exVolunteer.IHaveAPickupTruck; - - - // } - } - } - - return bEmailFound; - } // check email address - - private bool EmailAddressValid() - { - DisplayEmailMessage = DisplayNone; - if (newVolunteer.Email.Length > 0) // Email entered - { - var bEmailFound = CheckEmailAddress(newVolunteer.Email); - - // Debug.WriteLine(newVolunteer.Email + ": " + bEmailFound.ToString()); - - - if (newVolunteer.IHaveVolunteeredBefore) // existing Account - { - if (bEmailFound) - { // email & volunteer found - ExistingMessage = BootstrapHelper.GetBootstrapMessage(AlertSuccess, "We found your email. Welcome back. You shoul re-enter your profile information.", "", false, "compact"); - - } - else - { - ExistingMessage = BootstrapHelper.GetBootstrapMessage(AlertWarning, "We could not find your email. Please check again or make new reqistratioin.", "", false, "compact"); - } - DisplayExistingMessage = ""; - } - else - { - if (bEmailFound) // email already used - { - DisplayEmailMessage = "";// Form is not completed - return false; - } - } - } // email special validation - else { - return false; - } // No email entered - - return true; - - } // Email Address Valid - - - - private void FormValidation() - { - EditFormStatus = false; - if (!EmailAddressValid()) - { - return; - }; - - EditFormStatus = EC.Validate(); - - if (EditFormStatus) - { - if (ValidReCAPTCHA) - { - NotificationMessage = BootstrapHelper.GetBootstrapMessage(AlertSuccess, FormCompleted); - } - else - { - NotificationMessage = BootstrapHelper.GetBootstrapMessage(AlertSuccess, FormCompleted, "Please check reCAPTCHA."); - } - } - else - { - EditFormStatus = false; - NotificationMessage = BootstrapHelper.GetBootstrapMessage(AlertWarning, FormNotCompleted); - - } - } // Form Validation - - - #endregion - - - #region reCaptcha - - - private void OnSuccess() - { - //ResultMessage = "Secret Verification OK"; - //ResultDisplay = ""; - ValidReCAPTCHA = true; - if (EditFormStatus) - { - NotificationDisplay = DisplayNone; - } - else - { - NotificationMessage = BootstrapHelper.GetBootstrapMessage("error", FormNotCompleted); - NotificationDisplay = ""; - } - } // reCaptcha success - - private void OnExpired() - { - ValidReCAPTCHA = false; - } - - #endregion - #region SaveVolunteer - - - private async Task SaveVolunteer() - { - var FormStatusMessage = "The Volunteer Form is completed."; - RunValidation(); - - if (EditFormStatus && ValidReCAPTCHA) // data are valid - { - NotificationMessage = BootstrapHelper.GetBootstrapMessage("success", "The Form is completed"); - NotificationDisplay = ""; - if (!newVolunteer.IHaveVolunteeredBefore) - { - newVolunteer.LocationId = selectedLocation; // get value from child component - } - - await UpdateDatabase(); - - } // Edit Form Status - else // not valid data or/and reCaptcha - { - FormStatusMessage = string.Empty; - var ReCaptchaStatusMessage = string.Empty; - - if (EditFormStatus) - { - FormStatusMessage = "The Bed Request Form is completed!"; - AlertType = "success"; - if (!ValidReCAPTCHA) - { - AlertType = AlertWarning; - ReCaptchaStatusMessage = "Please check reCAPTCHA!"; - } - } - else - { - FormStatusMessage = FormNotCompleted; - AlertType = AlertWarning; - } - - NotificationMessage = BootstrapHelper.GetBootstrapMessage(AlertType, FormStatusMessage, ReCaptchaStatusMessage); - NotificationDisplay = ""; - } - - - } // Save Request - - private async Task UpdateDatabase() - { - var intNewVolunteerId = 0; - var intNewRegistrationId = 0; - var newRegister = new VolunteerEvent(); - - ServiceResponse addResult; - string ResultTitle = "Volunteer Registration"; - string ResultSubTitle = string.Empty; - string ResultMessage = string.Empty; - var intAddCar = 0; - - // Step 1 - save Volunteer Data - try - { - if (newVolunteer.VolunteerId > 0) // update Volunteer Data - { - addResult = await _svcVolunteer.UpdateAsync(newVolunteer); - } - else // create new Volunteer - { - addResult = await _svcVolunteer.CreateAsync(newVolunteer); - } - - if (addResult.Success && addResult.Data != null) - { - newVolunteer = addResult.Data; // saved Volunteer Data - - } - - if (newVolunteer != null && newVolunteer.VolunteerId > 0) - { - await ReviewVolunteerData(newVolunteer); - } - else - { - SubmitAlertMessage = "Warning! Unable to add new Volunteer!"; - AlertType = AlertDanger; - AlertDisplay = ""; - } - } - catch (Exception ex) - { - AlertType = AlertDanger; - SubmitAlertMessage = "Error! " + ex.Message; - AlertDisplay = ""; - } - } // update database - - private async Task ReviewVolunteerData(Volunteer newVolunteer) - { - var intNewVolunteerId = 0; - var intNewRegistrationId = 0; - var newRegister = new VolunteerEvent(); - - string ResultTitle = "Volunteer Registration"; - string ResultSubTitle = string.Empty; - string ResultMessage = string.Empty; - var intAddCar = 0; - - intNewVolunteerId = newVolunteer.VolunteerId; - // Step 2 - Register Volunteer to Event - if (isRegisterNow) - { - if (SelectedEvent != null && SelectedEvent.ScheduleId > 0) - { - //newRegister = new VolunteerEvent(); - newRegister.VolunteerId = intNewVolunteerId; - newRegister.LocationId = selectedLocation; - newRegister.ScheduleId = SelectedEvent.ScheduleId; - // comment - newRegister.VolunteerEventNote = VolunteerEventNote; - var addRegister = await _svcVolunteerEvents.CreateAsync(newRegister); - if (addRegister.Success && addRegister.Data != null) - { - newRegister = addRegister.Data; // added Request - intNewRegistrationId = newRegister.RegistrationId; - if (Convert.ToInt32(newVolunteer.VehicleType) > 0) // not noCar - { - intAddCar = 1; - } - - await UpdateScheduleVolunteerCount(newRegister.ScheduleId, intAddCar); - } - } - } // register now - - CreateFinalMessage(newVolunteer, newRegister, intNewRegistrationId); - - } // Review Volunteer Data - - private void CreateFinalMessage(Volunteer newVolunteer, VolunteerEvent newRegister, int intNewRegistrationId) - { - string ResultTitle = "Volunteer Registration"; - string ResultSubTitle = string.Empty; - string ResultMessage = string.Empty; - - //AlertType = "alert alert-success"; - DisplaySearch = DisplayNone; - DisplayForm = DisplayNone; - - // ResultMessage = "New Bed Request #" + newVolunteer.BedRequestId.ToString() + " created Successfully!
"; - - if (exVolunteerId > 0) - { - ResultTitle = "Welcome back, " + newVolunteer.FullName + "!"; - ResultSubTitle = "Thank you so much for your enthusiasm and genuine commitment to assisting us."; - } - else // new Volunteer - { - ResultTitle = "Welcome, " + newVolunteer.FullName + ".
"; - ResultSubTitle = "We appreciate your wish to join Bed Brigade Volunteer Team (your Volunteer ID: " + newVolunteer.VolunteerId.ToString() + ")."; - } - - if (isRegisterNow && intNewRegistrationId > 0) - { - ResultMessage += "Also, we received your registration as participant to scheduled Event:
" + selectedEventName + " (ID=" + newRegister.ScheduleId.ToString() + "), "; - ResultMessage += SelectedEvent.EventDateScheduled.ToShortDateString() + " " + SelectedEvent.EventDateScheduled.ToShortTimeString(); - ResultMessage += "
at Bed Brigade Location: " + selectedLocationName + " (ID=" + newRegister.LocationId.ToString() + ")."; - ResultMessage += "
We will look over your Bed Brigade Event registration and reply by email as soon as possible.
"; - } - else // No event Registration - { - var strDisplayLocationName = Locations.SingleOrDefault(item => item.LocationId == newVolunteer.LocationId).Name; - ResultSubTitle += "
Your Bed Brigade Location is: " + strDisplayLocationName + " (ID = " + newVolunteer.LocationId.ToString() + ")"; - } - ResultMessage += "Thank you!
Bed Brigade"; - ResultDisplay = ""; - FinalMessage = BootstrapHelper.GetBootstrapJumbotron(ResultTitle, ResultSubTitle, ResultMessage); - } // Create Final Message - - private async Task UpdateScheduleVolunteerCount(int intScheduleId, int intAddCar=0) - { - // update Registered volunteer count for registered Schedule - var dataRegister = await _svcVolunteerEvents.GetAllAsync(); // all registered events - if (dataRegister.Success && dataRegister != null) - { - VolunteerRegister = dataRegister.Data; - } - var registerEvent = new Schedule(); - - var dataEvents = await _svcSchedule.GetByIdAsync(intScheduleId); // Get selected Schedule data - if (dataEvents.Success && dataEvents != null) - { - registerEvent = dataEvents.Data; // dataEvents.Data.ToList().FirstOrDefault(item => item.ScheduleId == intScheduleId); - // update registered Volunteers by re-count of all Volunteers already registered for selected event - registerEvent.VolunteersRegistered = VolunteerRegister.Where(reg => reg.ScheduleId == intScheduleId).ToList().Count(); - // update Registered car for event - registerEvent.VehiclesDeliveryRegistered = registerEvent.VehiclesDeliveryRegistered + intAddCar; - - var addRegCount = await _svcSchedule.UpdateAsync(registerEvent); - } - } // Update Volunteer Count - - #endregion - - - } // page class -} // namespace diff --git a/BedBrigade.Client/wwwroot/Data/CreateSchedules.sql b/BedBrigade.Client/wwwroot/Data/CreateSchedules.sql deleted file mode 100644 index 96cc32c9..00000000 --- a/BedBrigade.Client/wwwroot/Data/CreateSchedules.sql +++ /dev/null @@ -1,433 +0,0 @@ -SET NOCOUNT ON; - -IF (OBJECT_ID('Schedules') IS NOT NULL ) -BEGIN - -IF (SELECT count(*) FROM [dbo].[Schedules]) = 0 -BEGIN - -SET IDENTITY_INSERT [dbo].[Schedules] ON -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (3, 3, N'matrices', N'edited note elementum pellentesque quisque porta volutpat', N'bifurcated', 4, 3, CAST(N'2023-03-25T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-25T00:00:00.0000000' AS DateTime2), 5, 6, 15, CAST(N'2023-03-01T00:00:00.0000000' AS DateTime2), N'smckerlie2@artisteer.com', CAST(N'2023-07-09T21:52:57.3022513' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (8, 3, N'maximized', N'id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum', N'secondary', 2, 3, CAST(N'2023-05-05T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-05T00:00:00.0000000' AS DateTime2), 5, 5, 19, CAST(N'2023-04-25T00:00:00.0000000' AS DateTime2), N'omaccallester7@washington.edu', CAST(N'2023-08-02T00:00:00.0000000' AS DateTime2), N'lmackenny7@printfriendly.com', N'88.161.76.250') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (11, 2, N'reciprocal', N'nisl nunc rhoncus dui vel sem sed', N'portal', 4, 2, CAST(N'2023-01-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-06T00:00:00.0000000' AS DateTime2), 14, 2, 9, CAST(N'2023-07-11T00:00:00.0000000' AS DateTime2), N'tmorgana@mayoclinic.com', CAST(N'2023-07-10T03:51:19.7284560' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (21, 1, N'solution', N'quisque erat eros viverra eget congue', N'non-volatile', 4, 3, CAST(N'2023-06-30T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-30T00:00:00.0000000' AS DateTime2), 4, 3, 19, CAST(N'2023-04-27T00:00:00.0000000' AS DateTime2), N'imanketellk@jigsy.com', CAST(N'2023-07-09T21:26:28.6611489' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (22, 3, N'Face to face', N'proin at turpis a pede posuere nonummy integer', N'forecast', 2, 3, CAST(N'2023-03-12T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-12T00:00:00.0000000' AS DateTime2), 15, 2, 6, CAST(N'2023-09-21T00:00:00.0000000' AS DateTime2), N'capperleyl@discuz.net', CAST(N'2023-07-09T19:49:29.9237186' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (24, 2, N'model', N'edited note eros vestibulum ac est lacinia nisi venenatis', N'interface', 1, 2, CAST(N'2023-05-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-02T00:00:00.0000000' AS DateTime2), 4, 4, 13, CAST(N'2023-03-26T00:00:00.0000000' AS DateTime2), N'blecountn@skyrock.com', CAST(N'2023-07-09T21:15:57.0557375' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (27, 1, N'Assembly Optimized', N'test note updated vestibulum ante ipsum primis in', N'Configurable', 3, 2, CAST(N'2023-02-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-01T00:00:00.0000000' AS DateTime2), 14, 4, 11, CAST(N'2023-04-28T00:00:00.0000000' AS DateTime2), N'mhumbleq@washington.edu', CAST(N'2023-07-09T21:04:17.3626736' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (28, 2, N'sdaasd asdasdasd', N'rutrum ac lobortis vel dapibus at diam', N'neutral', 1, 2, CAST(N'2023-06-24T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-24T00:00:00.0000000' AS DateTime2), 1, 5, 13, CAST(N'2023-08-08T00:00:00.0000000' AS DateTime2), N'mpietruszkar@un.org', CAST(N'2023-07-10T03:50:45.0581126' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (30, 1, N'review toolset 55', N'tincidunt eu felis fusce posuere felis', N'portal', 2, 2, CAST(N'2023-09-30T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-23T00:00:00.0000000' AS DateTime2), 13, 6, 19, CAST(N'2023-02-17T00:00:00.0000000' AS DateTime2), N'ggollopt@edublogs.org', CAST(N'2023-07-09T22:53:45.8879060' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (31, 2, N'Prepared Wood Details', N'new work nisi eu orci mauris lacinia sapien quis', N'productivity', 3, 1, CAST(N'2023-08-22T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-22T00:00:00.0000000' AS DateTime2), 3, 2, 17, CAST(N'2023-05-19T00:00:00.0000000' AS DateTime2), N'jtidboldu@unicef.org', CAST(N'2023-07-08T23:39:55.7422743' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (34, 3, N'project', N'felis sed lacus morbi sem', N'Adaptive', 1, 3, CAST(N'2023-08-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-09T00:00:00.0000000' AS DateTime2), 14, 4, 16, CAST(N'2023-03-20T00:00:00.0000000' AS DateTime2), N'wpedriellix@stanford.edu', CAST(N'2023-05-31T00:00:00.0000000' AS DateTime2), N'hsavatierx@reddit.com', N'60.251.253.52') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (39, 3, N'intangible', N'quam turpis adipiscing lorem vitae', N'Group 333', 1, 1, CAST(N'2023-06-17T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-17T00:00:00.0000000' AS DateTime2), 8, 5, 5, CAST(N'2023-06-10T00:00:00.0000000' AS DateTime2), N'smackomb12@cbslocal.com', CAST(N'2023-07-09T21:19:37.3153485' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (43, 3, N'Public-key', N'et magnis dis parturient montes nascetur ridiculus mus vivamus', N'groupware', 1, 2, CAST(N'2023-06-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-10T00:00:00.0000000' AS DateTime2), 15, 6, 19, CAST(N'2023-05-12T00:00:00.0000000' AS DateTime2), N'vdruery16@livejournal.com', CAST(N'2023-01-26T00:00:00.0000000' AS DateTime2), N'mshallcroff16@house.gov', N'213.99.37.113') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (44, 1, N'hardware', N'mattis odio donec vitae nisi nam ultrices libero non mattis', N'matrix', 4, 2, CAST(N'2023-04-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-30T00:00:00.0000000' AS DateTime2), 8, 3, 12, CAST(N'2023-06-14T00:00:00.0000000' AS DateTime2), N'awallworth17@joomla.org', CAST(N'2023-07-09T21:49:04.7981009' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (49, 2, N'attitude-oriented', N'odio elementum eu interdum eu tincidunt in leo', N'solution-oriented', 2, 2, CAST(N'2023-04-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-02T00:00:00.0000000' AS DateTime2), 11, 3, 9, CAST(N'2023-03-03T00:00:00.0000000' AS DateTime2), N'jharcombe1c@dropbox.com', CAST(N'2023-03-26T00:00:00.0000000' AS DateTime2), N'bbecken1c@kickstarter.com', N'168.241.220.238') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (50, 2, N'fault-tolerant', N'mauris non ligula pellentesque ultrices phasellus id sapien', N'heuristic', 1, 3, CAST(N'2023-03-05T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-05T00:00:00.0000000' AS DateTime2), 12, 6, 10, CAST(N'2023-09-29T00:00:00.0000000' AS DateTime2), N'stumility1d@narod.ru', CAST(N'2023-03-02T00:00:00.0000000' AS DateTime2), N'fmcilvaney1d@foxnews.com', N'220.38.216.132') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (54, 2, N'Adaptive', N'ridiculus mus etiam vel augue vestibulum rutrum', N'data-warehouse', 1, 1, CAST(N'2023-09-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-10T00:00:00.0000000' AS DateTime2), 9, 5, 8, CAST(N'2023-08-04T00:00:00.0000000' AS DateTime2), N'abain1h@hubpages.com', CAST(N'2023-08-27T00:00:00.0000000' AS DateTime2), N'oyakubowicz1h@cnbc.com', N'13.107.182.193') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (56, 3, N'project', N'aliquam quis turpis eget elit sodales scelerisque', N'protocol', 3, 2, CAST(N'2023-08-21T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-21T00:00:00.0000000' AS DateTime2), 10, 6, 17, CAST(N'2023-02-14T00:00:00.0000000' AS DateTime2), N'fdreelan1j@huffingtonpost.com', CAST(N'2023-07-10T20:32:01.7034946' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (59, 3, N'Open-architected', N'posuere cubilia curae donec pharetra magna vestibulum', N'solution-oriented', 3, 2, CAST(N'2023-07-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-10T00:00:00.0000000' AS DateTime2), 12, 1, 19, CAST(N'2023-03-19T00:00:00.0000000' AS DateTime2), N'mlatimer1m@ibm.com', CAST(N'2023-06-29T00:00:00.0000000' AS DateTime2), N'gblindermann1m@dailymail.co.uk', N'233.80.45.47') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (60, 3, N'background', N'ac neque duis bibendum morbi non quam nec', N'Customer-focused', 4, 1, CAST(N'2023-08-16T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-16T00:00:00.0000000' AS DateTime2), 10, 3, 16, CAST(N'2023-09-22T00:00:00.0000000' AS DateTime2), N'sdiego1n@pcworld.com', CAST(N'2023-06-18T00:00:00.0000000' AS DateTime2), N'vodd1n@telegraph.co.uk', N'96.174.108.44') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (62, 3, N'mission-critical', N'sapien arcu sed augue aliquam erat volutpat in congue', N'well-modulated', 1, 3, CAST(N'2023-07-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-01T00:00:00.0000000' AS DateTime2), 7, 2, 5, CAST(N'2023-09-27T00:00:00.0000000' AS DateTime2), N'spittendreigh1p@oakley.com', CAST(N'2023-05-26T00:00:00.0000000' AS DateTime2), N'nmattheis1p@moonfruit.com', N'29.195.239.213') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (64, 3, N'Devolved', N'nulla mollis molestie lorem quisque ut erat curabitur gravida', N'Re-engineered', 4, 1, CAST(N'2023-01-21T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-21T00:00:00.0000000' AS DateTime2), 5, 5, 10, CAST(N'2023-09-13T00:00:00.0000000' AS DateTime2), N'ldavidof1r@hc360.com', CAST(N'2023-09-20T00:00:00.0000000' AS DateTime2), N'npoyntz1r@yahoo.co.jp', N'213.71.101.77') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (67, 1, N'Reduced', N'a feugiat et eros vestibulum ac', N'software', 2, 1, CAST(N'2023-07-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-02T00:00:00.0000000' AS DateTime2), 13, 4, 19, CAST(N'2023-06-15T00:00:00.0000000' AS DateTime2), N'uroan1u@dagondesign.com', CAST(N'2023-09-01T00:00:00.0000000' AS DateTime2), N'csearch1u@dyndns.org', N'210.143.96.94') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (69, 1, N'capability', N'tristique fusce congue diam id ornare', N'core', 3, 1, CAST(N'2023-03-24T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-24T00:00:00.0000000' AS DateTime2), 9, 6, 16, CAST(N'2023-07-01T00:00:00.0000000' AS DateTime2), N'isalkeld1w@npr.org', CAST(N'2023-02-24T00:00:00.0000000' AS DateTime2), N'ephripp1w@mashable.com', N'73.12.147.154') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (70, 3, N'implementation', N'aliquam sit amet diam in magna bibendum imperdiet nullam', N'protocol', 1, 1, CAST(N'2023-06-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-02T00:00:00.0000000' AS DateTime2), 1, 1, 8, CAST(N'2023-05-10T00:00:00.0000000' AS DateTime2), N'fbrandon1x@springer.com', CAST(N'2023-01-04T00:00:00.0000000' AS DateTime2), N'hsaltsberger1x@1688.com', N'154.31.34.235') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (71, 3, N'intranet', N'mauris vulputate elementum nullam varius nulla facilisi', N'web-enabled', 1, 2, CAST(N'2023-08-13T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-13T00:00:00.0000000' AS DateTime2), 2, 3, 19, CAST(N'2023-04-30T00:00:00.0000000' AS DateTime2), N'rthomelin1y@google.com.au', CAST(N'2023-04-29T00:00:00.0000000' AS DateTime2), N'bhexham1y@businesswire.com', N'27.130.26.26') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (84, 2, N'Diverse', N'ultrices erat tortor sollicitudin mi', N'real-time', 2, 2, CAST(N'2023-01-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-19T00:00:00.0000000' AS DateTime2), 12, 2, 12, CAST(N'2023-08-07T00:00:00.0000000' AS DateTime2), N'svardy2b@reference.com', CAST(N'2023-09-09T00:00:00.0000000' AS DateTime2), N'rmorillas2b@usnews.com', N'66.190.175.28') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (87, 1, N'architecture', N'duis bibendum morbi non quam nec dui luctus', N'Reactive', 3, 2, CAST(N'2023-09-12T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-12T00:00:00.0000000' AS DateTime2), 3, 3, 5, CAST(N'2023-08-29T00:00:00.0000000' AS DateTime2), N'hdescoffier2e@columbia.edu', CAST(N'2023-05-21T00:00:00.0000000' AS DateTime2), N'dbolver2e@surveymonkey.com', N'168.43.6.67') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (90, 2, N'analyzing', N'donec diam neque vestibulum eget vulputate ut ultrices vel augue', N'matrix', 2, 2, CAST(N'2023-07-27T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-27T00:00:00.0000000' AS DateTime2), 1, 4, 12, CAST(N'2023-08-16T00:00:00.0000000' AS DateTime2), N'jestcourt2h@smh.com.au', CAST(N'2023-02-26T00:00:00.0000000' AS DateTime2), N'tgavigan2h@smh.com.au', N'8.223.107.67') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (93, 1, N'needs-based', N'metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean', N'success', 2, 1, CAST(N'2023-06-11T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-11T00:00:00.0000000' AS DateTime2), 8, 5, 12, CAST(N'2023-05-20T00:00:00.0000000' AS DateTime2), N'pgorce2k@si.edu', CAST(N'2023-06-16T00:00:00.0000000' AS DateTime2), N'vlande2k@wired.com', N'187.67.27.122') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (98, 1, N'throughput', N'scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula', N'open architecture', 4, 1, CAST(N'2023-05-14T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-14T00:00:00.0000000' AS DateTime2), 14, 2, 11, CAST(N'2023-01-16T00:00:00.0000000' AS DateTime2), N'meburah2p@indiatimes.com', CAST(N'2023-02-17T00:00:00.0000000' AS DateTime2), N'cbarrie2p@eepurl.com', N'101.232.241.129') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (100, 1, N'Streamlined', N'ac enim in tempor turpis nec', N'matrices', 2, 2, CAST(N'2023-01-20T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-20T00:00:00.0000000' AS DateTime2), 9, 1, 16, CAST(N'2023-04-24T00:00:00.0000000' AS DateTime2), N'coakley2r@sourceforge.net', CAST(N'2023-07-09T21:25:02.5579832' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (103, 1, N'even-keeled', N'curae duis faucibus accumsan odio curabitur convallis duis consequat dui', N'Proactive', 3, 1, CAST(N'2023-07-28T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-28T00:00:00.0000000' AS DateTime2), 8, 6, 8, CAST(N'2023-01-12T00:00:00.0000000' AS DateTime2), N'ishrive2u@lycos.com', CAST(N'2023-02-11T00:00:00.0000000' AS DateTime2), N'odemogeot2u@myspace.com', N'209.218.31.6') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (104, 3, N'disintermediate', N'amet diam in magna bibendum imperdiet nullam orci pede venenatis', N'projection', 2, 3, CAST(N'2023-06-21T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-21T00:00:00.0000000' AS DateTime2), 11, 5, 20, CAST(N'2023-08-03T00:00:00.0000000' AS DateTime2), N'dolden2v@bravesites.com', CAST(N'2023-09-22T00:00:00.0000000' AS DateTime2), N'saliberti2v@earthlink.net', N'140.16.224.223') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (106, 2, N'Configurable', N'donec odio justo sollicitudin ut', N'zero tolerance', 1, 3, CAST(N'2023-05-05T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-05T00:00:00.0000000' AS DateTime2), 5, 2, 12, CAST(N'2023-05-02T00:00:00.0000000' AS DateTime2), N'ereisen2x@state.tx.us', CAST(N'2023-02-17T00:00:00.0000000' AS DateTime2), N'hluddy2x@phoca.cz', N'36.254.139.138') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (107, 2, N'installation', N'ante vel ipsum praesent blandit lacinia erat', N'Implemented', 1, 2, CAST(N'2023-02-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-06T00:00:00.0000000' AS DateTime2), 7, 5, 8, CAST(N'2023-03-28T00:00:00.0000000' AS DateTime2), N'cdun2y@europa.eu', CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), N'rarnowicz2y@msu.edu', N'234.204.220.112') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (110, 3, N'homogeneous', N'praesent lectus vestibulum quam sapien varius ut blandit', N'upward-trending', 3, 1, CAST(N'2023-02-25T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-25T00:00:00.0000000' AS DateTime2), 7, 5, 19, CAST(N'2023-05-14T00:00:00.0000000' AS DateTime2), N'tvince31@guardian.co.uk', CAST(N'2023-02-12T00:00:00.0000000' AS DateTime2), N'slansbury31@netscape.com', N'146.96.0.44') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (112, 3, N'systematic', N'sed tincidunt eu felis fusce', N'impactful', 3, 3, CAST(N'2023-03-20T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-20T00:00:00.0000000' AS DateTime2), 10, 1, 19, CAST(N'2023-02-21T00:00:00.0000000' AS DateTime2), N'cellissen33@freewebs.com', CAST(N'2023-01-18T00:00:00.0000000' AS DateTime2), N'losharkey33@auda.org.au', N'93.101.148.91') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (113, 3, N'bandwidth-monitored', N'turpis integer aliquet massa id lobortis convallis tortor risus dapibus', N'dedicated', 2, 2, CAST(N'2023-06-04T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-04T00:00:00.0000000' AS DateTime2), 13, 1, 13, CAST(N'2023-04-13T00:00:00.0000000' AS DateTime2), N'etidbold34@timesonline.co.uk', CAST(N'2023-07-23T00:00:00.0000000' AS DateTime2), N'ahollindale34@printfriendly.com', N'122.85.0.8') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (114, 2, N'didactic', N'consequat dui nec nisi volutpat eleifend donec ut', N'attitude-oriented', 4, 2, CAST(N'2023-01-08T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-08T00:00:00.0000000' AS DateTime2), 9, 5, 12, CAST(N'2023-01-18T00:00:00.0000000' AS DateTime2), N'fpaschke35@omniture.com', CAST(N'2023-07-20T00:00:00.0000000' AS DateTime2), N'pbraidley35@istockphoto.com', N'235.84.45.169') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (119, 1, N'full-range', N'primis in faucibus orci luctus et ultrices', N'asymmetric', 4, 1, CAST(N'2023-03-18T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-18T00:00:00.0000000' AS DateTime2), 6, 3, 8, CAST(N'2023-08-12T00:00:00.0000000' AS DateTime2), N'baloshikin3a@wp.com', CAST(N'2023-03-14T00:00:00.0000000' AS DateTime2), N'tklausen3a@wp.com', N'51.222.10.146') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (120, 1, N'intermediate', N'edited note maecenas tincidunt lacus at velit vivamus', N'solution-oriented', 4, 1, CAST(N'2023-08-21T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-21T00:00:00.0000000' AS DateTime2), 7, 6, 16, CAST(N'2023-07-11T00:00:00.0000000' AS DateTime2), N'hknuckles3b@archive.org', CAST(N'2023-07-09T21:25:44.7263139' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (122, 3, N'Diverse', N'justo eu massa donec dapibus duis at velit eu est', N'time-frame', 1, 3, CAST(N'2023-02-04T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-04T00:00:00.0000000' AS DateTime2), 2, 1, 6, CAST(N'2023-01-06T00:00:00.0000000' AS DateTime2), N'eharraway3d@apache.org', CAST(N'2023-07-28T00:00:00.0000000' AS DateTime2), N'gdovington3d@unblog.fr', N'93.6.248.111') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (123, 3, N'Networked', N'elit proin interdum mauris non ligula', N'toolset', 1, 2, CAST(N'2023-07-25T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-25T00:00:00.0000000' AS DateTime2), 11, 3, 16, CAST(N'2023-09-19T00:00:00.0000000' AS DateTime2), N'dcomerford3e@gravatar.com', CAST(N'2023-02-12T00:00:00.0000000' AS DateTime2), N'mshrimpton3e@loc.gov', N'7.106.165.91') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (124, 3, N'context-sensitive', N'porttitor lacus at turpis donec posuere metus vitae ipsum aliquam', N'regional', 2, 1, CAST(N'2023-07-18T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-18T00:00:00.0000000' AS DateTime2), 7, 5, 12, CAST(N'2023-03-20T00:00:00.0000000' AS DateTime2), N'vpagett3f@google.cn', CAST(N'2023-05-21T00:00:00.0000000' AS DateTime2), N'cdurrance3f@pbs.org', N'144.10.182.252') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (126, 1, N'multi-tasking', N'in eleifend quam a odio in', N'cohesive', 1, 3, CAST(N'2023-04-23T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-23T00:00:00.0000000' AS DateTime2), 10, 2, 19, CAST(N'2023-01-06T00:00:00.0000000' AS DateTime2), N'achapleo3h@economist.com', CAST(N'2023-06-13T00:00:00.0000000' AS DateTime2), N'chalvorsen3h@etsy.com', N'225.87.71.179') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (127, 3, N'Versatile', N'justo morbi ut odio cras mi pede', N'monitoring', 4, 3, CAST(N'2023-02-18T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-18T00:00:00.0000000' AS DateTime2), 11, 5, 17, CAST(N'2023-03-08T00:00:00.0000000' AS DateTime2), N'dportsmouth3i@toplist.cz', CAST(N'2023-03-18T00:00:00.0000000' AS DateTime2), N'dvanelli3i@cornell.edu', N'30.96.155.67') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (128, 2, N'hierarchy', N'consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien', N'optimizing', 4, 1, CAST(N'2023-03-20T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-20T00:00:00.0000000' AS DateTime2), 14, 4, 7, CAST(N'2023-01-19T00:00:00.0000000' AS DateTime2), N'fkennady3j@networkadvertising.org', CAST(N'2023-09-17T00:00:00.0000000' AS DateTime2), N'vraiston3j@marriott.com', N'202.200.12.23') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (132, 1, N'open system', N'sapien cursus vestibulum proin eu mi nulla ac enim', N'support', 1, 1, CAST(N'2023-01-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-01T00:00:00.0000000' AS DateTime2), 13, 2, 11, CAST(N'2023-08-01T00:00:00.0000000' AS DateTime2), N'ffawckner3n@bbc.co.uk', CAST(N'2023-06-13T00:00:00.0000000' AS DateTime2), N'mmyhill3n@oaic.gov.au', N'8.166.95.78') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (141, 1, N'capability', N'quis augue luctus tincidunt nulla mollis molestie lorem', N'Extended', 3, 1, CAST(N'2023-07-24T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-24T00:00:00.0000000' AS DateTime2), 15, 1, 19, CAST(N'2023-08-25T00:00:00.0000000' AS DateTime2), N'tmaasz3w@washingtonpost.com', CAST(N'2023-03-26T00:00:00.0000000' AS DateTime2), N'cslewcock3w@discuz.net', N'227.18.196.129') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (143, 3, N'approach', N'fusce lacus purus aliquet at', N'local area network', 2, 2, CAST(N'2023-08-18T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-18T00:00:00.0000000' AS DateTime2), 14, 4, 13, CAST(N'2023-05-31T00:00:00.0000000' AS DateTime2), N'nforcer3y@wufoo.com', CAST(N'2023-09-23T00:00:00.0000000' AS DateTime2), N'sjimes3y@tripadvisor.com', N'208.23.232.236') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (151, 2, N'standardization', N'etiam faucibus cursus urna ut', N'multi-tasking', 2, 2, CAST(N'2023-02-03T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-03T00:00:00.0000000' AS DateTime2), 6, 1, 18, CAST(N'2023-05-05T00:00:00.0000000' AS DateTime2), N'dharman46@dell.com', CAST(N'2023-09-15T00:00:00.0000000' AS DateTime2), N'rfriskey46@psu.edu', N'159.70.62.139') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (153, 1, N'system-worthy', N'venenatis non sodales sed tincidunt eu felis fusce posuere felis', N'static', 4, 2, CAST(N'2023-01-20T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-20T00:00:00.0000000' AS DateTime2), 14, 6, 9, CAST(N'2023-04-22T00:00:00.0000000' AS DateTime2), N'opund48@bing.com', CAST(N'2023-07-27T00:00:00.0000000' AS DateTime2), N'mruff48@abc.net.au', N'227.97.99.134') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (154, 2, N'paradigm', N'potenti in eleifend quam a odio in hac', N'Secured', 1, 3, CAST(N'2023-04-29T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-29T00:00:00.0000000' AS DateTime2), 7, 6, 18, CAST(N'2023-03-21T00:00:00.0000000' AS DateTime2), N'clacroix49@rediff.com', CAST(N'2023-07-25T00:00:00.0000000' AS DateTime2), N'nwalthew49@ox.ac.uk', N'135.100.156.168') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (156, 3, N'service-desk', N'sapien iaculis congue vivamus metus', N'global', 1, 1, CAST(N'2023-02-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-09T00:00:00.0000000' AS DateTime2), 5, 4, 14, CAST(N'2023-01-08T00:00:00.0000000' AS DateTime2), N'jgreg4b@jimdo.com', CAST(N'2023-01-30T00:00:00.0000000' AS DateTime2), N'mcrisall4b@mtv.com', N'137.51.184.163') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (160, 3, N'matrix', N'pellentesque at nulla suspendisse potenti cras in', N'artificial intelligence', 3, 2, CAST(N'2023-04-12T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-12T00:00:00.0000000' AS DateTime2), 7, 6, 7, CAST(N'2023-08-30T00:00:00.0000000' AS DateTime2), N'lgranleese4f@squarespace.com', CAST(N'2023-04-25T00:00:00.0000000' AS DateTime2), N'rcrichmer4f@bigcartel.com', N'0.221.18.237') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (165, 2, N'Polarised', N'ultrices enim lorem ipsum dolor sit', N'24/7', 1, 1, CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-06T00:00:00.0000000' AS DateTime2), 14, 1, 5, CAST(N'2023-05-01T00:00:00.0000000' AS DateTime2), N'dblood4k@auda.org.au', CAST(N'2023-04-06T00:00:00.0000000' AS DateTime2), N'lkisting4k@amazon.de', N'21.65.83.65') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (166, 3, N'Operative', N'volutpat sapien arcu sed augue aliquam', N'Total', 2, 3, CAST(N'2023-07-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-06T00:00:00.0000000' AS DateTime2), 4, 2, 11, CAST(N'2023-01-17T00:00:00.0000000' AS DateTime2), N'gverey4l@npr.org', CAST(N'2023-06-15T00:00:00.0000000' AS DateTime2), N'hbilton4l@mediafire.com', N'52.242.212.139') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (167, 3, N'Switchable', N'vulputate luctus cum sociis natoque penatibus et magnis dis parturient', N'collaboration', 1, 1, CAST(N'2023-03-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-10T00:00:00.0000000' AS DateTime2), 1, 3, 5, CAST(N'2023-03-08T00:00:00.0000000' AS DateTime2), N'gnelligan4m@uol.com.br', CAST(N'2023-03-02T00:00:00.0000000' AS DateTime2), N'cgeertje4m@wunderground.com', N'12.249.248.252') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (168, 1, N'mission-critical', N'mus vivamus vestibulum sagittis sapien', N'mobile', 2, 1, CAST(N'2023-04-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-09T00:00:00.0000000' AS DateTime2), 10, 4, 10, CAST(N'2023-06-11T00:00:00.0000000' AS DateTime2), N'emcinnes4n@amazon.co.jp', CAST(N'2023-05-15T00:00:00.0000000' AS DateTime2), N'divanitsa4n@goo.gl', N'178.163.203.99') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (170, 3, N'product', N'cum sociis natoque penatibus et magnis', N'customer loyalty', 1, 2, CAST(N'2023-05-14T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-14T00:00:00.0000000' AS DateTime2), 3, 2, 14, CAST(N'2023-09-11T00:00:00.0000000' AS DateTime2), N'atrevethan4p@pcworld.com', CAST(N'2023-04-24T00:00:00.0000000' AS DateTime2), N'wsysland4p@wikipedia.org', N'78.177.99.55') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (171, 2, N'responsive', N'eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor', N'productivity', 4, 2, CAST(N'2023-05-23T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-23T00:00:00.0000000' AS DateTime2), 4, 6, 5, CAST(N'2023-09-02T00:00:00.0000000' AS DateTime2), N'lruff4q@nytimes.com', CAST(N'2023-01-21T00:00:00.0000000' AS DateTime2), N'shoultham4q@jiathis.com', N'71.194.70.119') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (173, 3, N'secondary', N'congue elementum in hac habitasse platea dictumst', N'Right-sized', 4, 2, CAST(N'2023-01-25T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-25T00:00:00.0000000' AS DateTime2), 13, 1, 6, CAST(N'2023-04-04T00:00:00.0000000' AS DateTime2), N'mcoulter4s@gov.uk', CAST(N'2023-08-13T00:00:00.0000000' AS DateTime2), N'dclinnick4s@imdb.com', N'6.147.39.43') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (174, 1, N'Integrated', N'volutpat convallis morbi odio odio elementum eu', N'upward-trending', 2, 1, CAST(N'2023-07-25T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-25T00:00:00.0000000' AS DateTime2), 3, 4, 13, CAST(N'2023-09-18T00:00:00.0000000' AS DateTime2), N'hmacari4t@multiply.com', CAST(N'2023-01-13T00:00:00.0000000' AS DateTime2), N'lcomford4t@state.gov', N'8.5.142.110') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (175, 3, N'bi-directional', N'mattis egestas metus aenean fermentum donec ut mauris eget massa', N'definition', 3, 1, CAST(N'2023-06-14T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-14T00:00:00.0000000' AS DateTime2), 14, 1, 8, CAST(N'2023-02-02T00:00:00.0000000' AS DateTime2), N'tkupka4u@tmall.com', CAST(N'2023-01-30T00:00:00.0000000' AS DateTime2), N'bmcterry4u@odnoklassniki.ru', N'151.145.55.80') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (176, 1, N'Inverse', N'consequat dui nec nisi volutpat eleifend donec ut dolor morbi', N'hardware', 2, 2, CAST(N'2023-05-25T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-25T00:00:00.0000000' AS DateTime2), 1, 5, 9, CAST(N'2023-03-26T00:00:00.0000000' AS DateTime2), N'wantosch4v@tinyurl.com', CAST(N'2023-01-03T00:00:00.0000000' AS DateTime2), N'kconnold4v@accuweather.com', N'202.112.213.17') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (177, 2, N'Synchronised', N'purus phasellus in felis donec', N'product', 1, 2, CAST(N'2023-05-25T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-25T00:00:00.0000000' AS DateTime2), 10, 6, 15, CAST(N'2023-05-20T00:00:00.0000000' AS DateTime2), N'jfrape4w@eventbrite.com', CAST(N'2023-08-21T00:00:00.0000000' AS DateTime2), N'tfilippi4w@twitpic.com', N'133.150.187.129') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (186, 1, N'bottom-line', N'dui vel nisl duis ac nibh fusce', N'zero defect', 1, 3, CAST(N'2023-09-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-06T00:00:00.0000000' AS DateTime2), 5, 6, 9, CAST(N'2023-03-16T00:00:00.0000000' AS DateTime2), N'eclemendet55@sakura.ne.jp', CAST(N'2023-06-08T00:00:00.0000000' AS DateTime2), N'hbown55@freewebs.com', N'51.43.9.99') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (187, 1, N'Intuitive', N'metus sapien ut nunc vestibulum', N'success', 2, 2, CAST(N'2023-01-18T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-18T00:00:00.0000000' AS DateTime2), 6, 6, 7, CAST(N'2023-07-23T00:00:00.0000000' AS DateTime2), N'fdary56@cornell.edu', CAST(N'2023-07-14T00:00:00.0000000' AS DateTime2), N'ehawes56@bbb.org', N'125.122.66.200') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (189, 1, N'bottom-line', N'duis bibendum felis sed interdum', N'Adaptive', 2, 3, CAST(N'2023-03-13T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-13T00:00:00.0000000' AS DateTime2), 6, 4, 18, CAST(N'2023-05-02T00:00:00.0000000' AS DateTime2), N'rglasscoo58@ihg.com', CAST(N'2023-05-04T00:00:00.0000000' AS DateTime2), N'kvelde58@alibaba.com', N'2.194.54.171') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (190, 2, N'info-mediaries', N'cursus vestibulum proin eu mi nulla ac', N'Business-focused', 2, 2, CAST(N'2023-08-23T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-23T00:00:00.0000000' AS DateTime2), 4, 2, 9, CAST(N'2023-03-16T00:00:00.0000000' AS DateTime2), N'ddaton59@cdc.gov', CAST(N'2023-05-27T00:00:00.0000000' AS DateTime2), N'tblackboro59@miitbeian.gov.cn', N'20.95.250.146') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (191, 1, N'portal', N'curae mauris viverra diam vitae quam', N'Right-sized', 1, 3, CAST(N'2023-04-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-01T00:00:00.0000000' AS DateTime2), 3, 4, 17, CAST(N'2023-04-05T00:00:00.0000000' AS DateTime2), N'spaffot5a@weather.com', CAST(N'2023-09-04T00:00:00.0000000' AS DateTime2), N'abendix5a@gravatar.com', N'215.254.103.189') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (192, 3, N'object-oriented', N'potenti in eleifend quam a odio in hac', N'optimizing', 3, 1, CAST(N'2023-05-28T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-28T00:00:00.0000000' AS DateTime2), 15, 6, 9, CAST(N'2023-05-31T00:00:00.0000000' AS DateTime2), N'tbrailsford5b@sitemeter.com', CAST(N'2023-06-03T00:00:00.0000000' AS DateTime2), N'kasif5b@tmall.com', N'158.7.241.9') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (193, 1, N'archive', N'placerat ante nulla justo aliquam quis turpis eget', N'upward-trending', 2, 2, CAST(N'2023-08-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-10T00:00:00.0000000' AS DateTime2), 5, 1, 10, CAST(N'2023-05-24T00:00:00.0000000' AS DateTime2), N'smutlow5c@vistaprint.com', CAST(N'2023-04-05T00:00:00.0000000' AS DateTime2), N'stregunnah5c@moonfruit.com', N'70.129.82.90') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (195, 2, N'portal', N'faucibus accumsan odio curabitur convallis duis consequat', N'open system', 1, 2, CAST(N'2023-09-11T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-11T00:00:00.0000000' AS DateTime2), 8, 3, 18, CAST(N'2023-04-10T00:00:00.0000000' AS DateTime2), N'qtwort5e@amazonaws.com', CAST(N'2023-05-11T00:00:00.0000000' AS DateTime2), N'naronson5e@techcrunch.com', N'50.14.137.226') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (197, 1, N'coherent', N'sed nisl nunc rhoncus dui vel sem sed', N'complexity', 3, 1, CAST(N'2023-06-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-01T00:00:00.0000000' AS DateTime2), 7, 3, 19, CAST(N'2023-07-14T00:00:00.0000000' AS DateTime2), N'whammor5g@hibu.com', CAST(N'2023-06-07T00:00:00.0000000' AS DateTime2), N'gborkin5g@cdc.gov', N'25.45.211.22') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (202, 3, N'contingency', N'faucibus orci luctus et ultrices posuere cubilia curae duis faucibus', N'De-engineered', 3, 1, CAST(N'2023-01-26T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-26T00:00:00.0000000' AS DateTime2), 15, 1, 13, CAST(N'2023-05-20T00:00:00.0000000' AS DateTime2), N'ohumblestone5l@wikipedia.org', CAST(N'2023-06-25T00:00:00.0000000' AS DateTime2), N'abisseker5l@meetup.com', N'39.11.174.3') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (203, 2, N'high-level', N'donec pharetra magna vestibulum aliquet', N'executive', 1, 1, CAST(N'2023-03-13T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-13T00:00:00.0000000' AS DateTime2), 1, 5, 12, CAST(N'2023-02-11T00:00:00.0000000' AS DateTime2), N'rleve5m@technorati.com', CAST(N'2023-02-18T00:00:00.0000000' AS DateTime2), N'ccarabine5m@thetimes.co.uk', N'25.221.37.31') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (209, 3, N'24/7', N'donec semper sapien a libero nam dui proin leo odio', N'Streamlined', 1, 3, CAST(N'2023-05-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-01T00:00:00.0000000' AS DateTime2), 12, 6, 10, CAST(N'2023-08-07T00:00:00.0000000' AS DateTime2), N'lwillicott5s@biglobe.ne.jp', CAST(N'2023-07-19T00:00:00.0000000' AS DateTime2), N'kgailor5s@globo.com', N'94.27.93.29') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (213, 3, N'middleware', N'a suscipit nulla elit ac nulla sed vel', N'time-frame', 3, 3, CAST(N'2023-07-08T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-08T00:00:00.0000000' AS DateTime2), 4, 4, 13, CAST(N'2023-07-16T00:00:00.0000000' AS DateTime2), N'mkynder5w@go.com', CAST(N'2023-07-02T00:00:00.0000000' AS DateTime2), N'pruste5w@google.co.uk', N'178.195.118.14') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (217, 2, N'circuit', N'aliquam erat volutpat in congue etiam justo etiam pretium iaculis', N'Persevering', 3, 2, CAST(N'2023-09-28T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-28T00:00:00.0000000' AS DateTime2), 10, 1, 6, CAST(N'2023-09-19T00:00:00.0000000' AS DateTime2), N'wgookey60@rakuten.co.jp', CAST(N'2023-05-15T00:00:00.0000000' AS DateTime2), N'ndemitris60@studiopress.com', N'76.35.34.60') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (224, 2, N'Graphical User Interface', N'libero quis orci nullam molestie nibh in', N'hardware', 3, 2, CAST(N'2023-04-07T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-07T00:00:00.0000000' AS DateTime2), 14, 6, 7, CAST(N'2023-03-01T00:00:00.0000000' AS DateTime2), N'rarchell67@qq.com', CAST(N'2023-02-07T00:00:00.0000000' AS DateTime2), N'swestmancoat67@fotki.com', N'255.182.239.196') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (225, 2, N'Multi-layered', N'maecenas pulvinar lobortis est phasellus sit amet erat nulla', N'analyzing', 2, 2, CAST(N'2023-09-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-02T00:00:00.0000000' AS DateTime2), 1, 2, 16, CAST(N'2023-03-10T00:00:00.0000000' AS DateTime2), N'aheddon68@vkontakte.ru', CAST(N'2023-06-21T00:00:00.0000000' AS DateTime2), N'kcudbertson68@virginia.edu', N'178.100.176.212') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (226, 1, N'moratorium', N'interdum in ante vestibulum ante ipsum primis in', N'Cloned', 3, 3, CAST(N'2023-09-29T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-29T00:00:00.0000000' AS DateTime2), 4, 2, 6, CAST(N'2023-03-14T00:00:00.0000000' AS DateTime2), N'sornelas69@freewebs.com', CAST(N'2023-04-03T00:00:00.0000000' AS DateTime2), N'hfilshin69@census.gov', N'177.250.206.187') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (233, 1, N'collaboration', N'curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor', N'Universal', 4, 3, CAST(N'2023-08-11T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-11T00:00:00.0000000' AS DateTime2), 12, 6, 14, CAST(N'2023-02-04T00:00:00.0000000' AS DateTime2), N'nodom6g@census.gov', CAST(N'2023-05-23T00:00:00.0000000' AS DateTime2), N'climpertz6g@dailymotion.com', N'17.5.30.141') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (238, 2, N'Intuitive', N'cras non velit nec nisi', N'ability', 2, 3, CAST(N'2023-08-28T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-28T00:00:00.0000000' AS DateTime2), 5, 2, 17, CAST(N'2023-05-17T00:00:00.0000000' AS DateTime2), N'dlasselle6l@friendfeed.com', CAST(N'2023-09-06T00:00:00.0000000' AS DateTime2), N'tmantrip6l@de.vu', N'48.204.230.234') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (241, 3, N'Organic', N'suscipit nulla elit ac nulla sed vel enim sit', N'mission-critical', 1, 1, CAST(N'2023-03-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-01T00:00:00.0000000' AS DateTime2), 3, 4, 5, CAST(N'2023-01-16T00:00:00.0000000' AS DateTime2), N'scolebeck6o@plala.or.jp', CAST(N'2023-09-05T00:00:00.0000000' AS DateTime2), N'hurquhart6o@pen.io', N'99.238.248.186') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (242, 1, N'Customer-focused', N'arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus', N'Versatile', 4, 1, CAST(N'2023-01-17T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-17T00:00:00.0000000' AS DateTime2), 2, 1, 18, CAST(N'2023-02-01T00:00:00.0000000' AS DateTime2), N'ehusher6p@tmall.com', CAST(N'2023-04-02T00:00:00.0000000' AS DateTime2), N'tblayney6p@privacy.gov.au', N'141.168.139.141') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (244, 3, N'artificial intelligence', N'nibh fusce lacus purus aliquet at feugiat', N'Compatible', 1, 2, CAST(N'2023-09-22T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-22T00:00:00.0000000' AS DateTime2), 7, 3, 6, CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), N'slindhe6r@multiply.com', CAST(N'2023-02-08T00:00:00.0000000' AS DateTime2), N'tstavers6r@miitbeian.gov.cn', N'236.193.243.138') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (245, 2, N'Compatible', N'justo aliquam quis turpis eget elit sodales', N'well-modulated', 3, 2, CAST(N'2023-08-27T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-27T00:00:00.0000000' AS DateTime2), 7, 1, 16, CAST(N'2023-03-02T00:00:00.0000000' AS DateTime2), N'plarver6s@imageshack.us', CAST(N'2023-09-02T00:00:00.0000000' AS DateTime2), N'gsurgison6s@hud.gov', N'255.33.85.4') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (248, 3, N'global', N'est phasellus sit amet erat nulla tempus vivamus in', N'Focused', 2, 1, CAST(N'2023-08-18T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-18T00:00:00.0000000' AS DateTime2), 15, 2, 7, CAST(N'2023-01-01T00:00:00.0000000' AS DateTime2), N'ford6v@dropbox.com', CAST(N'2023-01-16T00:00:00.0000000' AS DateTime2), N'eattoc6v@ihg.com', N'69.6.215.7') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (253, 3, N'analyzing', N'pede malesuada in imperdiet et', N'User-friendly', 3, 3, CAST(N'2023-03-08T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-08T00:00:00.0000000' AS DateTime2), 3, 1, 12, CAST(N'2023-08-31T00:00:00.0000000' AS DateTime2), N'gfrankowski70@tinyurl.com', CAST(N'2023-01-07T00:00:00.0000000' AS DateTime2), N'kvarren70@mail.ru', N'187.90.188.112') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (254, 3, N'Profound', N'commodo placerat praesent blandit nam', N'Programmable', 4, 1, CAST(N'2023-06-08T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-08T00:00:00.0000000' AS DateTime2), 14, 3, 12, CAST(N'2023-04-20T00:00:00.0000000' AS DateTime2), N'fmaffioni71@facebook.com', CAST(N'2023-06-19T00:00:00.0000000' AS DateTime2), N'lmclukie71@unblog.fr', N'40.109.210.77') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (255, 2, N'initiative', N'eros viverra eget congue eget semper rutrum', N'tangible', 3, 2, CAST(N'2023-01-04T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-04T00:00:00.0000000' AS DateTime2), 6, 1, 19, CAST(N'2023-03-06T00:00:00.0000000' AS DateTime2), N'cpercy72@sohu.com', CAST(N'2023-04-02T00:00:00.0000000' AS DateTime2), N'gbroadey72@istockphoto.com', N'31.95.217.112') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (256, 3, N'Customer-focused', N'ipsum ac tellus semper interdum mauris ullamcorper', N'attitude-oriented', 3, 1, CAST(N'2023-02-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-10T00:00:00.0000000' AS DateTime2), 8, 2, 18, CAST(N'2023-02-16T00:00:00.0000000' AS DateTime2), N'pyaldren73@etsy.com', CAST(N'2023-05-23T00:00:00.0000000' AS DateTime2), N'sclaeskens73@myspace.com', N'195.101.156.211') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (261, 2, N'orchestration', N'nunc proin at turpis a pede posuere nonummy integer non', N'groupware', 4, 1, CAST(N'2023-09-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-06T00:00:00.0000000' AS DateTime2), 15, 5, 13, CAST(N'2023-08-12T00:00:00.0000000' AS DateTime2), N'lferrillio78@auda.org.au', CAST(N'2023-02-03T00:00:00.0000000' AS DateTime2), N'pbevis78@aboutads.info', N'144.23.32.21') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (262, 2, N'stable', N'faucibus cursus urna ut tellus nulla ut erat', N'Synchronised', 4, 3, CAST(N'2023-05-29T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-29T00:00:00.0000000' AS DateTime2), 7, 5, 12, CAST(N'2023-04-01T00:00:00.0000000' AS DateTime2), N'ckennaird79@yale.edu', CAST(N'2023-02-26T00:00:00.0000000' AS DateTime2), N'mjachtym79@icio.us', N'65.105.114.23') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (263, 2, N'background', N'nulla suscipit ligula in lacus curabitur', N'Horizontal', 4, 1, CAST(N'2023-01-25T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-25T00:00:00.0000000' AS DateTime2), 1, 3, 14, CAST(N'2023-02-17T00:00:00.0000000' AS DateTime2), N'hbruineman7a@cnbc.com', CAST(N'2023-03-02T00:00:00.0000000' AS DateTime2), N'apymm7a@liveinternet.ru', N'129.200.31.138') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (264, 1, N'knowledge user', N'suspendisse potenti in eleifend quam a odio in', N'User-centric', 2, 1, CAST(N'2023-03-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-10T00:00:00.0000000' AS DateTime2), 9, 4, 11, CAST(N'2023-01-13T00:00:00.0000000' AS DateTime2), N'vpywell7b@blogger.com', CAST(N'2023-04-05T00:00:00.0000000' AS DateTime2), N'kscard7b@marriott.com', N'133.107.112.223') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (269, 2, N'success', N'vestibulum vestibulum ante ipsum primis in faucibus orci', N'neutral', 4, 3, CAST(N'2023-07-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-06T00:00:00.0000000' AS DateTime2), 11, 1, 17, CAST(N'2023-09-20T00:00:00.0000000' AS DateTime2), N'cpresdee7g@admin.ch', CAST(N'2023-09-27T00:00:00.0000000' AS DateTime2), N'kbly7g@redcross.org', N'157.153.118.7') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (271, 2, N'Digitized', N'turpis enim blandit mi in', N'encoding', 3, 1, CAST(N'2023-01-28T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-28T00:00:00.0000000' AS DateTime2), 3, 1, 19, CAST(N'2023-02-26T00:00:00.0000000' AS DateTime2), N'vruskin7i@cyberchimps.com', CAST(N'2023-09-18T00:00:00.0000000' AS DateTime2), N'cposchel7i@freewebs.com', N'116.95.57.109') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (272, 1, N'pricing structure', N'integer ac leo pellentesque ultrices mattis', N'challenge', 3, 2, CAST(N'2023-05-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-19T00:00:00.0000000' AS DateTime2), 1, 1, 13, CAST(N'2023-07-27T00:00:00.0000000' AS DateTime2), N'btrotton7j@rediff.com', CAST(N'2023-05-08T00:00:00.0000000' AS DateTime2), N'eaggott7j@wordpress.org', N'94.86.39.210') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (273, 3, N'capacity', N'nulla dapibus dolor vel est donec odio justo sollicitudin', N'bandwidth-monitored', 4, 2, CAST(N'2023-05-05T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-05T00:00:00.0000000' AS DateTime2), 7, 5, 16, CAST(N'2023-09-15T00:00:00.0000000' AS DateTime2), N'leykel7k@ask.com', CAST(N'2023-06-10T00:00:00.0000000' AS DateTime2), N'cfiddiman7k@go.com', N'185.69.252.19') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (277, 2, N'flexibility', N'nulla sed vel enim sit amet nunc viverra', N'Pre-emptive', 2, 2, CAST(N'2023-03-15T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-15T00:00:00.0000000' AS DateTime2), 12, 5, 5, CAST(N'2023-01-02T00:00:00.0000000' AS DateTime2), N'wcowerd7o@alexa.com', CAST(N'2023-07-06T00:00:00.0000000' AS DateTime2), N'jpesek7o@vinaora.com', N'35.78.204.245') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (278, 3, N'Centralized', N'bibendum morbi non quam nec dui luctus rutrum nulla tellus', N'Operative', 3, 2, CAST(N'2023-03-13T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-13T00:00:00.0000000' AS DateTime2), 13, 1, 18, CAST(N'2023-02-16T00:00:00.0000000' AS DateTime2), N'egrattage7p@shop-pro.jp', CAST(N'2023-01-08T00:00:00.0000000' AS DateTime2), N'dkahane7p@devhub.com', N'11.204.231.244') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (279, 3, N'Multi-tiered', N'sed magna at nunc commodo placerat praesent', N'benchmark', 1, 3, CAST(N'2023-07-05T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-05T00:00:00.0000000' AS DateTime2), 6, 1, 10, CAST(N'2023-08-29T00:00:00.0000000' AS DateTime2), N'rcissen7q@mail.ru', CAST(N'2023-08-17T00:00:00.0000000' AS DateTime2), N'cricciardo7q@joomla.org', N'100.40.22.214') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (280, 2, N'transitional', N'etiam faucibus cursus urna ut tellus nulla ut', N'multimedia', 2, 1, CAST(N'2023-01-28T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-28T00:00:00.0000000' AS DateTime2), 7, 3, 8, CAST(N'2023-01-26T00:00:00.0000000' AS DateTime2), N'mhancorn7r@dailymotion.com', CAST(N'2023-06-08T00:00:00.0000000' AS DateTime2), N'dfiorentino7r@shareasale.com', N'106.111.149.131') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (287, 1, N'Synergized', N'odio cras mi pede malesuada in', N'challenge', 4, 1, CAST(N'2023-09-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-09T00:00:00.0000000' AS DateTime2), 7, 1, 17, CAST(N'2023-04-28T00:00:00.0000000' AS DateTime2), N'dfaithfull7y@scribd.com', CAST(N'2023-08-06T00:00:00.0000000' AS DateTime2), N'drecke7y@reuters.com', N'246.167.226.224') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (288, 2, N'array', N'sit amet cursus id turpis integer aliquet massa id', N'paradigm', 4, 3, CAST(N'2023-08-03T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-03T00:00:00.0000000' AS DateTime2), 2, 4, 13, CAST(N'2023-05-11T00:00:00.0000000' AS DateTime2), N'lswitland7z@nih.gov', CAST(N'2023-07-16T00:00:00.0000000' AS DateTime2), N'hcasiero7z@soup.io', N'78.148.205.214') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (290, 1, N'algorithm', N'vitae nisl aenean lectus pellentesque eget nunc donec', N'hardware', 2, 3, CAST(N'2023-05-31T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-31T00:00:00.0000000' AS DateTime2), 1, 5, 5, CAST(N'2023-09-15T00:00:00.0000000' AS DateTime2), N'collerearnshaw81@economist.com', CAST(N'2023-06-05T00:00:00.0000000' AS DateTime2), N'hbrimming81@nbcnews.com', N'182.235.224.146') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (293, 1, N'full-range', N'eget tincidunt eget tempus vel pede morbi', N'system engine', 1, 3, CAST(N'2023-05-20T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-20T00:00:00.0000000' AS DateTime2), 14, 6, 6, CAST(N'2023-06-05T00:00:00.0000000' AS DateTime2), N'zmcfall84@weather.com', CAST(N'2023-02-19T00:00:00.0000000' AS DateTime2), N'jgreenrod84@timesonline.co.uk', N'207.228.5.75') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (294, 1, N'Graphical User Interface', N'in sagittis dui vel nisl duis ac nibh fusce', N'reciprocal', 4, 3, CAST(N'2023-06-27T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-27T00:00:00.0000000' AS DateTime2), 5, 2, 12, CAST(N'2023-05-21T00:00:00.0000000' AS DateTime2), N'eclemencet85@opensource.org', CAST(N'2023-05-31T00:00:00.0000000' AS DateTime2), N'fdaverin85@printfriendly.com', N'113.141.1.101') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (299, 2, N'policy', N'consequat varius integer ac leo pellentesque ultrices mattis odio', N'attitude', 2, 2, CAST(N'2023-04-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-09T00:00:00.0000000' AS DateTime2), 12, 1, 5, CAST(N'2023-08-29T00:00:00.0000000' AS DateTime2), N'cembra8a@biblegateway.com', CAST(N'2023-08-09T00:00:00.0000000' AS DateTime2), N'jdenisard8a@facebook.com', N'183.23.32.208') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (300, 2, N'Automated', N'ipsum integer a nibh in', N'Intuitive', 4, 2, CAST(N'2023-04-28T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-28T00:00:00.0000000' AS DateTime2), 15, 3, 17, CAST(N'2023-04-05T00:00:00.0000000' AS DateTime2), N'dmazella8b@epa.gov', CAST(N'2023-03-19T00:00:00.0000000' AS DateTime2), N'kprimmer8b@vkontakte.ru', N'131.245.76.234') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (303, 2, N'intranet', N'praesent id massa id nisl venenatis lacinia aenean sit amet', N'object-oriented', 2, 2, CAST(N'2023-03-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-01T00:00:00.0000000' AS DateTime2), 13, 1, 5, CAST(N'2023-06-13T00:00:00.0000000' AS DateTime2), N'cdhenin8e@intel.com', CAST(N'2023-08-25T00:00:00.0000000' AS DateTime2), N'rcartmail8e@indiatimes.com', N'52.217.9.146') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (305, 3, N'secured line', N'nisl duis ac nibh fusce lacus purus aliquet at feugiat', N'pricing structure', 4, 2, CAST(N'2023-04-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-01T00:00:00.0000000' AS DateTime2), 4, 5, 7, CAST(N'2023-03-27T00:00:00.0000000' AS DateTime2), N'dmartellini8g@gravatar.com', CAST(N'2023-06-05T00:00:00.0000000' AS DateTime2), N'depple8g@constantcontact.com', N'189.255.123.23') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (307, 1, N'Graphic Interface', N'hac habitasse platea dictumst maecenas ut massa quis augue luctus', N'modular', 3, 2, CAST(N'2023-09-08T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-08T00:00:00.0000000' AS DateTime2), 12, 2, 6, CAST(N'2023-09-20T00:00:00.0000000' AS DateTime2), N'hrobart8i@nih.gov', CAST(N'2023-07-28T00:00:00.0000000' AS DateTime2), N'cdeerness8i@jigsy.com', N'191.119.144.0') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (308, 3, N'logistical', N'varius integer ac leo pellentesque ultrices mattis odio donec vitae', N'Persistent', 1, 1, CAST(N'2023-09-11T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-11T00:00:00.0000000' AS DateTime2), 12, 1, 16, CAST(N'2023-09-26T00:00:00.0000000' AS DateTime2), N'acanadas8j@blog.com', CAST(N'2023-03-12T00:00:00.0000000' AS DateTime2), N'cperrinchief8j@imgur.com', N'191.250.160.214') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (310, 1, N'mission-critical', N'in imperdiet et commodo vulputate justo in blandit', N'demand-driven', 1, 3, CAST(N'2023-07-12T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-12T00:00:00.0000000' AS DateTime2), 7, 1, 11, CAST(N'2023-06-08T00:00:00.0000000' AS DateTime2), N'tsantori8l@multiply.com', CAST(N'2023-02-19T00:00:00.0000000' AS DateTime2), N'loxby8l@cafepress.com', N'85.188.122.148') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (312, 2, N'functionalities', N'mauris enim leo rhoncus sed vestibulum sit amet cursus id', N'real-time', 3, 1, CAST(N'2023-03-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-09T00:00:00.0000000' AS DateTime2), 10, 2, 15, CAST(N'2023-06-08T00:00:00.0000000' AS DateTime2), N'aallard8n@51.la', CAST(N'2023-06-19T00:00:00.0000000' AS DateTime2), N'klapping8n@netscape.com', N'66.72.73.41') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (313, 1, N'Virtual', N'pellentesque viverra pede ac diam cras pellentesque volutpat dui', N'Virtual', 4, 3, CAST(N'2023-03-24T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-24T00:00:00.0000000' AS DateTime2), 6, 2, 14, CAST(N'2023-07-06T00:00:00.0000000' AS DateTime2), N'gpenk8o@fema.gov', CAST(N'2023-02-25T00:00:00.0000000' AS DateTime2), N'cbettanay8o@mlb.com', N'21.203.35.20') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (315, 1, N'cohesive', N'odio justo sollicitudin ut suscipit a feugiat et', N'multimedia', 4, 2, CAST(N'2023-08-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-10T00:00:00.0000000' AS DateTime2), 13, 4, 20, CAST(N'2023-02-19T00:00:00.0000000' AS DateTime2), N'jsymons8q@wordpress.org', CAST(N'2023-06-30T00:00:00.0000000' AS DateTime2), N'bduckitt8q@booking.com', N'48.171.65.105') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (317, 1, N'system engine', N'penatibus et magnis dis parturient', N'Object-based', 3, 3, CAST(N'2023-04-27T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-27T00:00:00.0000000' AS DateTime2), 6, 3, 17, CAST(N'2023-03-21T00:00:00.0000000' AS DateTime2), N'bheaviside8s@examiner.com', CAST(N'2023-09-05T00:00:00.0000000' AS DateTime2), N'jcyson8s@topsy.com', N'240.113.116.164') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (318, 2, N'success', N'accumsan felis ut at dolor quis', N'Multi-channelled', 4, 1, CAST(N'2023-07-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-02T00:00:00.0000000' AS DateTime2), 11, 5, 9, CAST(N'2023-07-01T00:00:00.0000000' AS DateTime2), N'jsowle8t@behance.net', CAST(N'2023-08-15T00:00:00.0000000' AS DateTime2), N'lskellorne8t@blogger.com', N'226.38.56.70') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (322, 3, N'synergy', N'euismod scelerisque quam turpis adipiscing', N'mobile', 3, 3, CAST(N'2023-04-29T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-29T00:00:00.0000000' AS DateTime2), 1, 1, 6, CAST(N'2023-05-19T00:00:00.0000000' AS DateTime2), N'mmackneis8x@prnewswire.com', CAST(N'2023-01-22T00:00:00.0000000' AS DateTime2), N'smacaleese8x@ovh.net', N'45.32.116.213') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (326, 3, N'grid-enabled', N'a libero nam dui proin leo odio porttitor', N'Business-focused', 1, 3, CAST(N'2023-01-17T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-17T00:00:00.0000000' AS DateTime2), 7, 1, 8, CAST(N'2023-02-19T00:00:00.0000000' AS DateTime2), N'ksarsons91@godaddy.com', CAST(N'2023-06-24T00:00:00.0000000' AS DateTime2), N'cnanetti91@utexas.edu', N'17.149.202.205') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (330, 1, N'Phased', N'primis in faucibus orci luctus et ultrices', N'Team-oriented', 1, 2, CAST(N'2023-05-07T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-07T00:00:00.0000000' AS DateTime2), 15, 6, 9, CAST(N'2023-02-23T00:00:00.0000000' AS DateTime2), N'cphilipeaux95@google.pl', CAST(N'2023-04-04T00:00:00.0000000' AS DateTime2), N'erosendall95@mashable.com', N'214.47.136.221') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (333, 3, N'Decentralized', N'pellentesque volutpat dui maecenas tristique est', N'Versatile', 2, 3, CAST(N'2023-02-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-19T00:00:00.0000000' AS DateTime2), 11, 1, 13, CAST(N'2023-01-03T00:00:00.0000000' AS DateTime2), N'psmallpeice98@vinaora.com', CAST(N'2023-02-01T00:00:00.0000000' AS DateTime2), N'amaddie98@cnn.com', N'73.230.176.44') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (334, 2, N'Exclusive', N'semper porta volutpat quam pede lobortis ligula sit amet eleifend', N'artificial intelligence', 2, 3, CAST(N'2023-02-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-02T00:00:00.0000000' AS DateTime2), 4, 1, 17, CAST(N'2023-07-01T00:00:00.0000000' AS DateTime2), N'zdennis99@wired.com', CAST(N'2023-06-14T00:00:00.0000000' AS DateTime2), N'tsmaleman99@utexas.edu', N'194.138.12.49') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (335, 2, N'executive', N'non pretium quis lectus suspendisse potenti', N'solution-oriented', 3, 2, CAST(N'2023-02-15T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-15T00:00:00.0000000' AS DateTime2), 7, 6, 18, CAST(N'2023-01-19T00:00:00.0000000' AS DateTime2), N'gcarlaw9a@mashable.com', CAST(N'2023-03-23T00:00:00.0000000' AS DateTime2), N'mcoucher9a@tripadvisor.com', N'246.54.37.115') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (339, 1, N'adapter', N'convallis nunc proin at turpis a', N'incremental', 1, 2, CAST(N'2023-08-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-19T00:00:00.0000000' AS DateTime2), 15, 1, 18, CAST(N'2023-08-07T00:00:00.0000000' AS DateTime2), N'pmargetson9e@dropbox.com', CAST(N'2023-07-19T00:00:00.0000000' AS DateTime2), N'onunesnabarro9e@paypal.com', N'18.140.116.56') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (341, 2, N'Business-focused', N'nonummy maecenas tincidunt lacus at velit', N'mobile', 4, 2, CAST(N'2023-03-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-10T00:00:00.0000000' AS DateTime2), 13, 4, 10, CAST(N'2023-03-19T00:00:00.0000000' AS DateTime2), N'ahoudmont9g@sun.com', CAST(N'2023-07-07T00:00:00.0000000' AS DateTime2), N'nmuccino9g@usda.gov', N'99.247.83.191') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (343, 1, N'intranet', N'eget orci vehicula condimentum curabitur in', N'instruction set', 3, 2, CAST(N'2023-01-14T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-14T00:00:00.0000000' AS DateTime2), 7, 3, 12, CAST(N'2023-01-15T00:00:00.0000000' AS DateTime2), N'fhallan9i@techcrunch.com', CAST(N'2023-09-14T00:00:00.0000000' AS DateTime2), N'scasper9i@theguardian.com', N'79.213.137.90') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (344, 1, N'Pre-emptive', N'nulla nunc purus phasellus in felis donec semper', N'parallelism', 4, 2, CAST(N'2023-09-29T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-29T00:00:00.0000000' AS DateTime2), 10, 6, 11, CAST(N'2023-02-10T00:00:00.0000000' AS DateTime2), N'sgeane9j@csmonitor.com', CAST(N'2023-02-13T00:00:00.0000000' AS DateTime2), N'vmcentagart9j@a8.net', N'59.116.20.54') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (346, 2, N'Horizontal', N'sit amet nulla quisque arcu libero rutrum ac', N'alliance', 1, 3, CAST(N'2023-02-05T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-05T00:00:00.0000000' AS DateTime2), 7, 3, 5, CAST(N'2023-09-21T00:00:00.0000000' AS DateTime2), N'kpickthorn9l@mozilla.org', CAST(N'2023-04-16T00:00:00.0000000' AS DateTime2), N'jdraaisma9l@virginia.edu', N'103.61.171.155') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (351, 1, N'Future-proofed', N'commodo vulputate justo in blandit ultrices enim lorem ipsum dolor', N'frame', 3, 3, CAST(N'2023-01-05T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-05T00:00:00.0000000' AS DateTime2), 13, 5, 5, CAST(N'2023-02-18T00:00:00.0000000' AS DateTime2), N'tavent9q@macromedia.com', CAST(N'2023-02-17T00:00:00.0000000' AS DateTime2), N'rreide9q@uiuc.edu', N'118.120.163.183') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (353, 3, N'Polarised', N'lacus at turpis donec posuere metus vitae ipsum aliquam', N'Integrated', 4, 3, CAST(N'2023-09-03T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-03T00:00:00.0000000' AS DateTime2), 9, 3, 10, CAST(N'2023-09-21T00:00:00.0000000' AS DateTime2), N'nhounsome9s@salon.com', CAST(N'2023-05-14T00:00:00.0000000' AS DateTime2), N'jwield9s@wikispaces.com', N'143.128.149.20') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (354, 3, N'archive', N'curae nulla dapibus dolor vel est', N'Graphical User Interface', 3, 3, CAST(N'2023-05-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-02T00:00:00.0000000' AS DateTime2), 13, 5, 10, CAST(N'2023-07-08T00:00:00.0000000' AS DateTime2), N'tbolland9t@nifty.com', CAST(N'2023-09-23T00:00:00.0000000' AS DateTime2), N'hfrancom9t@census.gov', N'245.1.203.129') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (355, 1, N'Cloned', N'nulla suscipit ligula in lacus curabitur at ipsum', N'neural-net', 4, 1, CAST(N'2023-09-03T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-03T00:00:00.0000000' AS DateTime2), 8, 4, 19, CAST(N'2023-03-15T00:00:00.0000000' AS DateTime2), N'adalloway9u@hostgator.com', CAST(N'2023-02-17T00:00:00.0000000' AS DateTime2), N'gainsworth9u@zdnet.com', N'182.168.7.124') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (356, 1, N'instruction set', N'tincidunt eu felis fusce posuere felis sed', N'attitude-oriented', 2, 3, CAST(N'2023-04-16T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-16T00:00:00.0000000' AS DateTime2), 1, 5, 14, CAST(N'2023-05-02T00:00:00.0000000' AS DateTime2), N'ecrepin9v@ycombinator.com', CAST(N'2023-05-16T00:00:00.0000000' AS DateTime2), N'acottier9v@biglobe.ne.jp', N'246.249.26.65') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (357, 3, N'Focused', N'integer aliquet massa id lobortis convallis tortor', N'Quality-focused', 2, 1, CAST(N'2023-09-20T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-20T00:00:00.0000000' AS DateTime2), 5, 4, 10, CAST(N'2023-04-29T00:00:00.0000000' AS DateTime2), N'bdod9w@aboutads.info', CAST(N'2023-03-04T00:00:00.0000000' AS DateTime2), N'rjeacocke9w@imgur.com', N'57.13.242.163') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (359, 2, N'Right-sized', N'ridiculus mus etiam vel augue vestibulum rutrum rutrum neque', N'non-volatile', 3, 3, CAST(N'2023-08-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-19T00:00:00.0000000' AS DateTime2), 11, 5, 16, CAST(N'2023-03-02T00:00:00.0000000' AS DateTime2), N'ldresche9y@un.org', CAST(N'2023-07-13T00:00:00.0000000' AS DateTime2), N'mgrolle9y@indiegogo.com', N'51.97.28.140') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (361, 3, N'optimizing', N'ullamcorper augue a suscipit nulla elit ac nulla sed vel', N'Quality-focused', 4, 3, CAST(N'2023-01-04T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-04T00:00:00.0000000' AS DateTime2), 1, 6, 8, CAST(N'2023-05-04T00:00:00.0000000' AS DateTime2), N'cslynea0@techcrunch.com', CAST(N'2023-03-01T00:00:00.0000000' AS DateTime2), N'sedmanda0@quantcast.com', N'110.255.150.53') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (362, 3, N'local area network', N'habitasse platea dictumst maecenas ut massa quis', N'Progressive', 3, 1, CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-06T00:00:00.0000000' AS DateTime2), 8, 5, 12, CAST(N'2023-09-29T00:00:00.0000000' AS DateTime2), N'ewimesa1@ameblo.jp', CAST(N'2023-02-10T00:00:00.0000000' AS DateTime2), N'ogeibela1@list-manage.com', N'110.136.215.206') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (365, 3, N'Fully-configurable', N'blandit nam nulla integer pede justo lacinia eget tincidunt eget', N'frame', 4, 3, CAST(N'2023-08-07T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-07T00:00:00.0000000' AS DateTime2), 1, 2, 15, CAST(N'2023-03-18T00:00:00.0000000' AS DateTime2), N'sgoldberga4@posterous.com', CAST(N'2023-01-29T00:00:00.0000000' AS DateTime2), N'atoopa4@patch.com', N'203.161.31.221') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (367, 1, N'implementation', N'sapien a libero nam dui proin leo odio', N'User-centric', 1, 3, CAST(N'2023-03-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-09T00:00:00.0000000' AS DateTime2), 6, 2, 15, CAST(N'2023-02-24T00:00:00.0000000' AS DateTime2), N'sconena6@cmu.edu', CAST(N'2023-01-24T00:00:00.0000000' AS DateTime2), N'whynea6@bloomberg.com', N'87.122.18.126') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (369, 3, N'mobile', N'massa tempor convallis nulla neque libero convallis eget eleifend luctus', N'Horizontal', 2, 3, CAST(N'2023-05-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-06T00:00:00.0000000' AS DateTime2), 4, 5, 7, CAST(N'2023-07-08T00:00:00.0000000' AS DateTime2), N'kimmingsa8@slideshare.net', CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), N'kbairda8@spotify.com', N'158.151.239.211') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (375, 3, N'Function-based', N'morbi odio odio elementum eu interdum', N'intranet', 4, 1, CAST(N'2023-01-31T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-31T00:00:00.0000000' AS DateTime2), 5, 5, 10, CAST(N'2023-07-07T00:00:00.0000000' AS DateTime2), N'gsemirazae@pinterest.com', CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), N'mnellenae@state.gov', N'65.94.184.19') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (377, 1, N'background', N'cum sociis natoque penatibus et magnis dis parturient', N'Inverse', 1, 3, CAST(N'2023-06-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-09T00:00:00.0000000' AS DateTime2), 8, 5, 11, CAST(N'2023-06-10T00:00:00.0000000' AS DateTime2), N'wleguayag@whitehouse.gov', CAST(N'2023-09-18T00:00:00.0000000' AS DateTime2), N'lstoffersag@myspace.com', N'247.186.73.4') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (378, 3, N'stable', N'mi pede malesuada in imperdiet et', N'complexity', 2, 1, CAST(N'2023-05-31T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-31T00:00:00.0000000' AS DateTime2), 12, 3, 13, CAST(N'2023-06-13T00:00:00.0000000' AS DateTime2), N'asanciasah@cyberchimps.com', CAST(N'2023-08-16T00:00:00.0000000' AS DateTime2), N'bmerrienah@netlog.com', N'186.230.157.199') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (384, 1, N'Expanded', N'nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel', N'analyzer', 4, 1, CAST(N'2023-06-28T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-28T00:00:00.0000000' AS DateTime2), 10, 4, 19, CAST(N'2023-06-05T00:00:00.0000000' AS DateTime2), N'mibbsan@wsj.com', CAST(N'2023-01-23T00:00:00.0000000' AS DateTime2), N'ahutchinsonan@linkedin.com', N'121.111.245.147') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (388, 1, N'dedicated', N'in blandit ultrices enim lorem ipsum dolor', N'intangible', 1, 2, CAST(N'2023-01-27T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-27T00:00:00.0000000' AS DateTime2), 6, 6, 7, CAST(N'2023-05-05T00:00:00.0000000' AS DateTime2), N'ehobdenar@so-net.ne.jp', CAST(N'2023-01-28T00:00:00.0000000' AS DateTime2), N'aaustwickar@indiegogo.com', N'143.22.101.1') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (391, 2, N'Synergistic', N'non velit nec nisi vulputate nonummy maecenas', N'Persevering', 2, 3, CAST(N'2023-03-24T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-24T00:00:00.0000000' AS DateTime2), 14, 2, 8, CAST(N'2023-05-22T00:00:00.0000000' AS DateTime2), N'dlesurfau@house.gov', CAST(N'2023-01-14T00:00:00.0000000' AS DateTime2), N'msivellau@4shared.com', N'89.201.34.14') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (393, 3, N'Synergistic', N'in tempus sit amet sem', N'exuding', 2, 2, CAST(N'2023-09-09T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-09T00:00:00.0000000' AS DateTime2), 7, 6, 5, CAST(N'2023-05-14T00:00:00.0000000' AS DateTime2), N'dgerlackaw@timesonline.co.uk', CAST(N'2023-03-23T00:00:00.0000000' AS DateTime2), N'ssonaw@devhub.com', N'196.2.131.149') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (400, 3, N'Open-source', N'donec quis orci eget orci', N'moratorium', 4, 1, CAST(N'2023-08-22T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-22T00:00:00.0000000' AS DateTime2), 7, 4, 11, CAST(N'2023-04-01T00:00:00.0000000' AS DateTime2), N'bbiggamb3@tumblr.com', CAST(N'2023-05-25T00:00:00.0000000' AS DateTime2), N'isumsionb3@cyberchimps.com', N'91.140.224.167') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (405, 2, N'hub', N'praesent blandit nam nulla integer', N'implementation', 3, 2, CAST(N'2023-03-17T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-17T00:00:00.0000000' AS DateTime2), 9, 6, 18, CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), N'vivisonb8@tuttocitta.it', CAST(N'2023-03-27T00:00:00.0000000' AS DateTime2), N'etulkb8@123-reg.co.uk', N'124.243.65.24') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (406, 1, N'reciprocal', N'eget semper rutrum nulla nunc purus', N'mobile', 3, 1, CAST(N'2023-06-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-10T00:00:00.0000000' AS DateTime2), 2, 2, 11, CAST(N'2023-03-07T00:00:00.0000000' AS DateTime2), N'llindopb9@php.net', CAST(N'2023-04-06T00:00:00.0000000' AS DateTime2), N'scastellinob9@jalbum.net', N'208.194.120.97') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (407, 2, N'Robust', N'in faucibus orci luctus et ultrices', N'Persistent', 1, 1, CAST(N'2023-07-14T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-14T00:00:00.0000000' AS DateTime2), 13, 4, 15, CAST(N'2023-04-22T00:00:00.0000000' AS DateTime2), N'amenierba@odnoklassniki.ru', CAST(N'2023-09-08T00:00:00.0000000' AS DateTime2), N'vmanhoodba@vimeo.com', N'203.32.131.24') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (410, 2, N'coherent', N'suspendisse potenti nullam porttitor lacus at turpis donec posuere', N'productivity', 4, 2, CAST(N'2023-04-15T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-15T00:00:00.0000000' AS DateTime2), 7, 6, 9, CAST(N'2023-02-11T00:00:00.0000000' AS DateTime2), N'pbrutonbd@themeforest.net', CAST(N'2023-03-28T00:00:00.0000000' AS DateTime2), N'pbahikebd@psu.edu', N'156.88.163.58') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (412, 3, N'Future-proofed', N'vestibulum quam sapien varius ut', N'multi-state', 2, 3, CAST(N'2023-06-26T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-26T00:00:00.0000000' AS DateTime2), 11, 3, 19, CAST(N'2023-06-04T00:00:00.0000000' AS DateTime2), N'mkubasiewiczbf@flavors.me', CAST(N'2023-08-06T00:00:00.0000000' AS DateTime2), N'hstarkingsbf@bravesites.com', N'133.132.15.145') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (415, 1, N'regional', N'in felis eu sapien cursus vestibulum', N'Front-line', 3, 2, CAST(N'2023-02-15T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-15T00:00:00.0000000' AS DateTime2), 12, 4, 14, CAST(N'2023-05-09T00:00:00.0000000' AS DateTime2), N'goboybi@nifty.com', CAST(N'2023-09-05T00:00:00.0000000' AS DateTime2), N'ltallantbi@theglobeandmail.com', N'21.108.192.164') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (417, 3, N'approach', N'mi pede malesuada in imperdiet et commodo vulputate', N'exuding', 4, 3, CAST(N'2023-06-22T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-22T00:00:00.0000000' AS DateTime2), 6, 4, 10, CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), N'ksextibk@scientificamerican.com', CAST(N'2023-06-16T00:00:00.0000000' AS DateTime2), N'ctesoebk@mediafire.com', N'58.168.147.241') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (418, 3, N'heuristic', N'ut massa volutpat convallis morbi odio odio', N'conglomeration', 4, 1, CAST(N'2023-02-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-19T00:00:00.0000000' AS DateTime2), 10, 4, 17, CAST(N'2023-05-07T00:00:00.0000000' AS DateTime2), N'ahulancebl@scribd.com', CAST(N'2023-01-26T00:00:00.0000000' AS DateTime2), N'fleonbl@cocolog-nifty.com', N'132.144.67.129') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (421, 2, N'intranet', N'mi integer ac neque duis bibendum', N'even-keeled', 4, 2, CAST(N'2023-09-03T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-03T00:00:00.0000000' AS DateTime2), 12, 2, 14, CAST(N'2023-01-29T00:00:00.0000000' AS DateTime2), N'vdowbakinbo@livejournal.com', CAST(N'2023-01-05T00:00:00.0000000' AS DateTime2), N'cstowellbo@uiuc.edu', N'115.38.168.69') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (422, 2, N'motivating', N'accumsan tellus nisi eu orci', N'customer loyalty', 3, 3, CAST(N'2023-06-23T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-23T00:00:00.0000000' AS DateTime2), 9, 5, 11, CAST(N'2023-04-20T00:00:00.0000000' AS DateTime2), N'martonbp@blogger.com', CAST(N'2023-05-18T00:00:00.0000000' AS DateTime2), N'zswinburnbp@nyu.edu', N'155.173.11.141') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (424, 1, N'internet solution', N'suscipit nulla elit ac nulla sed', N'5th generation', 2, 1, CAST(N'2023-07-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-02T00:00:00.0000000' AS DateTime2), 6, 2, 7, CAST(N'2023-09-07T00:00:00.0000000' AS DateTime2), N'csiaskowskibr@ebay.co.uk', CAST(N'2023-05-03T00:00:00.0000000' AS DateTime2), N'dgrundlebr@netlog.com', N'96.2.62.112') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (425, 3, N'system-worthy', N'nisi eu orci mauris lacinia', N'secured line', 4, 3, CAST(N'2023-06-29T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-29T00:00:00.0000000' AS DateTime2), 15, 5, 11, CAST(N'2023-06-17T00:00:00.0000000' AS DateTime2), N'gcramebs@earthlink.net', CAST(N'2023-08-15T00:00:00.0000000' AS DateTime2), N'cferreirobs@discovery.com', N'213.155.138.120') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (426, 1, N'open architecture', N'volutpat in congue etiam justo etiam pretium iaculis', N'fault-tolerant', 3, 1, CAST(N'2023-09-13T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-13T00:00:00.0000000' AS DateTime2), 7, 1, 11, CAST(N'2023-06-21T00:00:00.0000000' AS DateTime2), N'coldroydebt@wp.com', CAST(N'2023-08-28T00:00:00.0000000' AS DateTime2), N'tboveybt@shareasale.com', N'80.227.255.187') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (429, 1, N'even-keeled', N'imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed', N'radical', 1, 1, CAST(N'2023-01-04T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-04T00:00:00.0000000' AS DateTime2), 1, 2, 5, CAST(N'2023-04-21T00:00:00.0000000' AS DateTime2), N'tpancoustbw@comcast.net', CAST(N'2023-03-07T00:00:00.0000000' AS DateTime2), N'xfiennesbw@mit.edu', N'49.54.81.181') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (430, 2, N'Advanced', N'sit amet nunc viverra dapibus nulla suscipit ligula in', N'Profound', 2, 2, CAST(N'2023-06-17T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-17T00:00:00.0000000' AS DateTime2), 10, 3, 11, CAST(N'2023-07-21T00:00:00.0000000' AS DateTime2), N'hkeenlaysidebx@soundcloud.com', CAST(N'2023-03-29T00:00:00.0000000' AS DateTime2), N'grooksbybx@free.fr', N'250.132.104.17') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (432, 1, N'mobile', N'eget nunc donec quis orci eget', N'zero tolerance', 2, 1, CAST(N'2023-05-10T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-10T00:00:00.0000000' AS DateTime2), 2, 3, 5, CAST(N'2023-02-19T00:00:00.0000000' AS DateTime2), N'cselbiebz@myspace.com', CAST(N'2023-05-18T00:00:00.0000000' AS DateTime2), N'ustandevenbz@google.nl', N'129.105.150.199') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (436, 3, N'Team-oriented', N'molestie lorem quisque ut erat curabitur gravida nisi at', N'pricing structure', 4, 2, CAST(N'2023-08-15T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-15T00:00:00.0000000' AS DateTime2), 2, 1, 6, CAST(N'2023-06-07T00:00:00.0000000' AS DateTime2), N'kneilandsc3@soundcloud.com', CAST(N'2023-04-05T00:00:00.0000000' AS DateTime2), N'estetlyec3@npr.org', N'26.48.19.120') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (439, 2, N'client-server', N'luctus nec molestie sed justo', N'client-driven', 1, 2, CAST(N'2023-05-03T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-03T00:00:00.0000000' AS DateTime2), 12, 6, 11, CAST(N'2023-06-14T00:00:00.0000000' AS DateTime2), N'cgrevilec6@bigcartel.com', CAST(N'2023-08-28T00:00:00.0000000' AS DateTime2), N'jdehavenc6@devhub.com', N'135.56.148.156') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (446, 3, N'Decentralized', N'lacus curabitur at ipsum ac tellus semper interdum mauris', N'concept', 4, 3, CAST(N'2023-04-26T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-26T00:00:00.0000000' AS DateTime2), 4, 6, 14, CAST(N'2023-03-25T00:00:00.0000000' AS DateTime2), N'lacremancd@arstechnica.com', CAST(N'2023-04-15T00:00:00.0000000' AS DateTime2), N'pletteresecd@apple.com', N'242.66.7.123') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (447, 1, N'ability', N'in est risus auctor sed tristique in tempus sit amet', N'collaboration', 2, 3, CAST(N'2023-04-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-19T00:00:00.0000000' AS DateTime2), 10, 2, 14, CAST(N'2023-02-24T00:00:00.0000000' AS DateTime2), N'ijedrychowskice@blogs.com', CAST(N'2023-02-26T00:00:00.0000000' AS DateTime2), N'taristidece@multiply.com', N'113.232.126.104') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (457, 1, N'intangible', N'curae donec pharetra magna vestibulum aliquet ultrices erat tortor', N'Face to face', 4, 1, CAST(N'2023-07-04T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-04T00:00:00.0000000' AS DateTime2), 10, 3, 19, CAST(N'2023-02-08T00:00:00.0000000' AS DateTime2), N'barnaezco@bandcamp.com', CAST(N'2023-02-13T00:00:00.0000000' AS DateTime2), N'ntreanorco@livejournal.com', N'0.41.210.96') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (459, 2, N'homogeneous', N'rhoncus dui vel sem sed sagittis nam', N'Extended', 2, 2, CAST(N'2023-08-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-10-19T00:00:00.0000000' AS DateTime2), 2, 3, 9, CAST(N'2023-08-07T00:00:00.0000000' AS DateTime2), N'jterbruggecq@fda.gov', CAST(N'2023-09-17T00:00:00.0000000' AS DateTime2), N'tsmithscq@exblog.jp', N'95.215.246.69') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (463, 1, N'secured line', N'donec ut dolor morbi vel lectus', N'Business-focused', 4, 2, CAST(N'2023-01-02T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-02T00:00:00.0000000' AS DateTime2), 7, 6, 9, CAST(N'2023-01-14T00:00:00.0000000' AS DateTime2), N'kfradsoncu@lulu.com', CAST(N'2023-01-06T00:00:00.0000000' AS DateTime2), N'klearmonthcu@noaa.gov', N'193.191.188.66') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (466, 2, N'high-level', N'sapien cursus vestibulum proin eu mi', N'radical', 4, 3, CAST(N'2023-05-05T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-05T00:00:00.0000000' AS DateTime2), 3, 5, 11, CAST(N'2023-09-09T00:00:00.0000000' AS DateTime2), N'mstainingcx@naver.com', CAST(N'2023-06-05T00:00:00.0000000' AS DateTime2), N'vandrivotcx@salon.com', N'168.188.72.50') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (467, 3, N'middleware', N'magna ac consequat metus sapien ut nunc vestibulum ante ipsum', N'impactful', 1, 3, CAST(N'2023-02-21T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-21T00:00:00.0000000' AS DateTime2), 14, 4, 7, CAST(N'2023-04-05T00:00:00.0000000' AS DateTime2), N'kstaniforthcy@theguardian.com', CAST(N'2023-03-24T00:00:00.0000000' AS DateTime2), N'ylevertoncy@so-net.ne.jp', N'60.63.171.188') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (468, 3, N'context-sensitive', N'nisl venenatis lacinia aenean sit amet', N'productivity', 3, 1, CAST(N'2023-06-06T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-06T00:00:00.0000000' AS DateTime2), 9, 3, 10, CAST(N'2023-05-16T00:00:00.0000000' AS DateTime2), N'skeileycz@flickr.com', CAST(N'2023-03-13T00:00:00.0000000' AS DateTime2), N'tgreensidecz@reference.com', N'103.10.186.59') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (470, 3, N'instruction set', N'cum sociis natoque penatibus et magnis dis parturient montes', N'didactic', 2, 1, CAST(N'2023-06-24T00:00:00.0000000' AS DateTime2), CAST(N'2023-08-24T00:00:00.0000000' AS DateTime2), 6, 5, 19, CAST(N'2023-07-25T00:00:00.0000000' AS DateTime2), N'glibbisd1@deviantart.com', CAST(N'2023-09-07T00:00:00.0000000' AS DateTime2), N'ntythed1@auda.org.au', N'122.171.17.49') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (476, 2, N'client-server', N'rhoncus dui vel sem sed sagittis', N'Open-source', 4, 2, CAST(N'2023-01-23T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-23T00:00:00.0000000' AS DateTime2), 15, 5, 20, CAST(N'2023-08-28T00:00:00.0000000' AS DateTime2), N'scarpenterd7@chicagotribune.com', CAST(N'2023-04-17T00:00:00.0000000' AS DateTime2), N'dlassend7@wikipedia.org', N'162.11.56.205') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (477, 2, N'Balanced', N'lorem ipsum dolor sit amet consectetuer adipiscing elit', N'encryption', 4, 1, CAST(N'2023-02-12T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-12T00:00:00.0000000' AS DateTime2), 10, 3, 10, CAST(N'2023-03-14T00:00:00.0000000' AS DateTime2), N'overzeyd8@blog.com', CAST(N'2023-09-06T00:00:00.0000000' AS DateTime2), N'nsowerbuttsd8@dot.gov', N'205.253.117.160') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (478, 3, N'local area network', N'nulla dapibus dolor vel est', N'24/7', 1, 2, CAST(N'2023-03-16T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-16T00:00:00.0000000' AS DateTime2), 11, 6, 19, CAST(N'2023-03-14T00:00:00.0000000' AS DateTime2), N'cearwickerd9@phoca.cz', CAST(N'2023-08-03T00:00:00.0000000' AS DateTime2), N'jwonfard9@lulu.com', N'225.58.44.155') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (479, 3, N'solution-oriented', N'est phasellus sit amet erat nulla', N'Versatile', 3, 1, CAST(N'2023-05-18T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-18T00:00:00.0000000' AS DateTime2), 4, 1, 9, CAST(N'2023-06-17T00:00:00.0000000' AS DateTime2), N'nlinnellda@webnode.com', CAST(N'2023-03-30T00:00:00.0000000' AS DateTime2), N'hjephsonda@desdev.cn', N'72.160.29.202') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (480, 3, N'Grass-roots', N'vestibulum proin eu mi nulla ac enim', N'encompassing', 1, 3, CAST(N'2023-02-19T00:00:00.0000000' AS DateTime2), CAST(N'2023-04-19T00:00:00.0000000' AS DateTime2), 5, 4, 14, CAST(N'2023-06-14T00:00:00.0000000' AS DateTime2), N'atoombsdb@devhub.com', CAST(N'2023-06-03T00:00:00.0000000' AS DateTime2), N'nkasparskidb@imdb.com', N'155.223.104.254') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (482, 3, N'Multi-channelled', N'maecenas tincidunt lacus at velit vivamus', N'challenge', 1, 1, CAST(N'2023-04-15T00:00:00.0000000' AS DateTime2), CAST(N'2023-06-15T00:00:00.0000000' AS DateTime2), 4, 4, 7, CAST(N'2023-03-09T00:00:00.0000000' AS DateTime2), N'pcoringtondd@youtube.com', CAST(N'2023-04-04T00:00:00.0000000' AS DateTime2), N'csherrocksdd@cpanel.net', N'193.65.158.75') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (483, 2, N'firmware', N'nunc donec quis orci eget orci vehicula', N'3rd generation', 3, 2, CAST(N'2023-03-01T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-01T00:00:00.0000000' AS DateTime2), 4, 4, 11, CAST(N'2023-06-18T00:00:00.0000000' AS DateTime2), N'dphilipardde@google.es', CAST(N'2023-08-30T00:00:00.0000000' AS DateTime2), N'dpinkertonde@dell.com', N'34.170.149.199') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (485, 2, N'User-centric', N'ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque', N'clear-thinking', 2, 2, CAST(N'2023-03-14T00:00:00.0000000' AS DateTime2), CAST(N'2023-05-14T00:00:00.0000000' AS DateTime2), 6, 3, 7, CAST(N'2023-05-15T00:00:00.0000000' AS DateTime2), N'hjoynerdg@wired.com', CAST(N'2023-07-18T00:00:00.0000000' AS DateTime2), N'vjerratschdg@mysql.com', N'195.249.212.217') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (490, 3, N'zero defect', N'cubilia curae duis faucibus accumsan', N'neural-net', 4, 3, CAST(N'2023-07-24T00:00:00.0000000' AS DateTime2), CAST(N'2023-09-24T00:00:00.0000000' AS DateTime2), 5, 4, 8, CAST(N'2023-06-04T00:00:00.0000000' AS DateTime2), N'gpitkeathlydl@123-reg.co.uk', CAST(N'2023-06-09T00:00:00.0000000' AS DateTime2), N'uperrycostdl@newyorker.com', N'244.206.147.147') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (491, 1, N'firmware', N'turpis donec posuere metus vitae ipsum aliquam non mauris morbi', N'actuating', 1, 3, CAST(N'2023-05-12T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-12T00:00:00.0000000' AS DateTime2), 2, 5, 12, CAST(N'2023-08-07T00:00:00.0000000' AS DateTime2), N'hhudghtondm@auda.org.au', CAST(N'2023-03-29T00:00:00.0000000' AS DateTime2), N'cwhitlanddm@bloomberg.com', N'44.35.127.183') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (492, 3, N'Cross-platform', N'tortor duis mattis egestas metus', N'Fully-configurable', 1, 3, CAST(N'2023-01-12T00:00:00.0000000' AS DateTime2), CAST(N'2023-03-12T00:00:00.0000000' AS DateTime2), 9, 2, 5, CAST(N'2023-05-14T00:00:00.0000000' AS DateTime2), N'jhonischdn@bizjournals.com', CAST(N'2023-08-28T00:00:00.0000000' AS DateTime2), N'pbradburydn@ask.com', N'226.75.62.130') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (494, 1, N'modular', N'elementum ligula vehicula consequat morbi a', N'interactive', 1, 2, CAST(N'2023-09-17T00:00:00.0000000' AS DateTime2), CAST(N'2023-11-17T00:00:00.0000000' AS DateTime2), 12, 4, 13, CAST(N'2023-05-04T00:00:00.0000000' AS DateTime2), N'ematschukdp@wisc.edu', CAST(N'2023-03-19T00:00:00.0000000' AS DateTime2), N'rrevandp@163.com', N'111.107.65.207') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (498, 2, N'bi-directional', N'elementum ligula vehicula consequat morbi a ipsum integer', N'asynchronous', 4, 3, CAST(N'2023-05-16T00:00:00.0000000' AS DateTime2), CAST(N'2023-07-16T00:00:00.0000000' AS DateTime2), 1, 6, 18, CAST(N'2023-08-06T00:00:00.0000000' AS DateTime2), N'bgalierdt@vinaora.com', CAST(N'2023-09-10T00:00:00.0000000' AS DateTime2), N'aschwandtdt@nhs.uk', N'130.247.224.244') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (499, 1, N'National Event (new)', N'New Event Note', N'New Group', 0, 1, CAST(N'2023-07-08T00:00:00.0000000' AS DateTime2), CAST(N'0001-01-01T00:00:00.0000000' AS DateTime2), 1, 4, 5, CAST(N'2023-07-08T23:55:43.0394137' AS DateTime2), N'Seed', CAST(N'2023-07-08T23:55:43.0394154' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (500, 1, N'1', N'', N'', 4, 1, CAST(N'2023-07-09T00:00:00.0000000' AS DateTime2), CAST(N'0001-01-01T00:00:00.0000000' AS DateTime2), 0, 0, 0, CAST(N'2023-07-09T22:48:36.8109175' AS DateTime2), N'Seed', CAST(N'2023-07-09T22:48:36.8110666' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (501, 3, N'New test event', N'New Test Event', N'My Group', 2, 1, CAST(N'2023-07-28T00:00:00.0000000' AS DateTime2), CAST(N'0001-01-01T00:00:00.0000000' AS DateTime2), 2, 2, 2, CAST(N'2023-07-09T23:00:37.3572396' AS DateTime2), N'Seed', CAST(N'2023-07-09T23:00:37.3572410' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (502, 1, N'New Event (by Val)', N'A new Event was created for testing of adding Event', N'Val''s Test Group', 1, 1, CAST(N'2023-07-31T00:00:00.0000000' AS DateTime2), CAST(N'0001-01-01T00:00:00.0000000' AS DateTime2), 5, 5, 5, CAST(N'2023-07-09T23:22:23.3460310' AS DateTime2), N'Seed', CAST(N'2023-07-09T23:22:23.3463435' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (503, 3, N'New Event 22 (by Val)', N'No note', N'Val''s Test Group 22', 2, 1, CAST(N'2023-08-10T00:00:00.0000000' AS DateTime2), CAST(N'0001-01-01T00:00:00.0000000' AS DateTime2), 3, 3, 3, CAST(N'2023-07-09T23:28:55.5755379' AS DateTime2), N'Seed', CAST(N'2023-07-09T23:28:55.5755388' AS DateTime2), N'Seed', N'DELLXPS-8930') -INSERT [dbo].[Schedules] ([ScheduleId], [LocationId], [EventName], [EventNote], [GroupName], [EventType], [EventStatus], [EventDateScheduled], [EventDateCompleted], [VehiclesDeliveryMax], [VehiclesNormalMax], [VolunteersMax], [CreateDate], [CreateUser], [UpdateDate], [UpdateUser], [MachineName]) VALUES (504, 3, N'New Rock Work', N'Test Event for Rock City', N'Val''s Test Group', 1, 1, CAST(N'2023-07-20T00:00:00.0000000' AS DateTime2), CAST(N'0001-01-01T00:00:00.0000000' AS DateTime2), 2, 2, 2, CAST(N'2023-07-10T20:36:07.0450717' AS DateTime2), N'Seed', CAST(N'2023-07-10T20:36:07.0450732' AS DateTime2), N'Seed', N'DELLXPS-8930') -SET IDENTITY_INSERT [dbo].[Schedules] OFF - - INSERT INTO dbo.Schedules - ( - [LocationId] - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - ) - SELECT - 4 - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - FROM [bedbrigade].[dbo].[Schedules] - where LocationId=1 - - INSERT INTO dbo.Schedules - ( - [LocationId] - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - ) - SELECT - 5 - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - FROM [bedbrigade].[dbo].[Schedules] - where LocationId=2 - - INSERT INTO dbo.Schedules - ( - [LocationId] - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - ) - SELECT - 6 - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - FROM [bedbrigade].[dbo].[Schedules] - where LocationId=3 - - INSERT INTO dbo.Schedules - ( - [LocationId] - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - ) - SELECT - 7 - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - FROM [bedbrigade].[dbo].[Schedules] - where LocationId=1 - - INSERT INTO dbo.Schedules - ( - [LocationId] - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - ) - SELECT - 8 - ,[EventName] - ,[EventNote] - ,[GroupName] - ,[EventType] - ,[EventStatus] - ,[EventDateScheduled] - ,[EventDateCompleted] - ,[VehiclesDeliveryMax] - ,[VehiclesNormalMax] - ,[VolunteersMax] - ,[CreateDate] - ,[CreateUser] - ,[UpdateDate] - ,[UpdateUser] - ,[MachineName] - ,[VehiclesDeliveryRegistered] - ,[VolunteersRegistered] - FROM [bedbrigade].[dbo].[Schedules] - where LocationId=3 - - update dbo.Schedules SET EventDateScheduled=DATEADD(month, 5, EventDateScheduled) - - END - -END - \ No newline at end of file diff --git a/BedBrigade.Common/Constants/ConfigNames.cs b/BedBrigade.Common/Constants/ConfigNames.cs index 6f793a6b..1c71a6f8 100644 --- a/BedBrigade.Common/Constants/ConfigNames.cs +++ b/BedBrigade.Common/Constants/ConfigNames.cs @@ -10,6 +10,7 @@ public static class ConfigNames public const string BedBrigadeNearMeMaxMiles = "BedBrigadeNearMeMaxMiles"; public const string DisplayIdFields = "DisplayIdFields"; public const string EmptyGridText = "EmptyGridText"; + public const string EventCutOffTimeDays = "EventCutOffTimeDays"; //Media public const string AllowedFileExtensions = "AllowedFileExtensions"; diff --git a/BedBrigade.Common/Models/Schedule.cs b/BedBrigade.Common/Models/Schedule.cs index 334d809c..58bed303 100644 --- a/BedBrigade.Common/Models/Schedule.cs +++ b/BedBrigade.Common/Models/Schedule.cs @@ -28,14 +28,14 @@ public class Schedule : BaseEntity, ILocationId [Required] public DateTime EventDateScheduled { get; set; } + public int EventDurationHours { get; set; } = 0; + // Event Resources (3) - - public int VehiclesDeliveryMax { get; set; } = 0; - public int VehiclesDeliveryRegistered { get; set; } = 0; - public int VehiclesNormalMax { get; set; } = 0; + public int VolunteersMax { get; set; } = 0; public int VolunteersRegistered { get; set; } = 0; - + public int DeliveryVehiclesRegistered { get; set; } = 0; + public string EventSelect { get diff --git a/BedBrigade.Common/Models/Volunteer.cs b/BedBrigade.Common/Models/Volunteer.cs index c6b4f589..4831f936 100644 --- a/BedBrigade.Common/Models/Volunteer.cs +++ b/BedBrigade.Common/Models/Volunteer.cs @@ -43,14 +43,6 @@ public class Volunteer : BaseEntity, ILocationId, IEmail public VehicleType VehicleType { get; set; } = VehicleType.NoCar; // default value - public Boolean IHaveAMinivan { get; set; } = false; // unused - - public Boolean IHaveAnSUV { get; set; } = false; // unused - - public Boolean IHaveAPickupTruck { get; set; } = false; // unused - - public int VolunteeringForId { get; set; } = 0; // unused - public DateTime VolunteeringForDate { get; set; }// unused [NotMapped] public string FullName { diff --git a/BedBrigade.Data/Data/DataContext.cs b/BedBrigade.Data/Data/DataContext.cs index 39896fbb..acbe25bc 100644 --- a/BedBrigade.Data/Data/DataContext.cs +++ b/BedBrigade.Data/Data/DataContext.cs @@ -53,8 +53,6 @@ private static void CreateIndexes(ModelBuilder modelBuilder) modelBuilder.Entity() .HasIndex(o => o.EventType); - modelBuilder.Entity() - .HasIndex(o => o.VolunteeringForId); modelBuilder.Entity() .HasIndex(o => o.ScheduleId); diff --git a/BedBrigade.Data/Data/Seeding/Seed.cs b/BedBrigade.Data/Data/Seeding/Seed.cs index 7d23def4..4cafe980 100644 --- a/BedBrigade.Data/Data/Seeding/Seed.cs +++ b/BedBrigade.Data/Data/Seeding/Seed.cs @@ -153,52 +153,34 @@ public static async Task SeedData(IDbContextFactory contextFactory) await SeedVolunteers(contextFactory); await SeedDonations(contextFactory); await SeedBedRequests(contextFactory); - SeedSchedules(contextFactory); + await SeedSchedules(contextFactory); } - public static void SeedSchedules(IDbContextFactory contextFactory, bool bTruncateData = false) + public static async Task SeedSchedules(IDbContextFactory contextFactory, bool bTruncateData = false) { Log.Logger.Information("Seed Schedules Started"); - string? sqlConnectionString = string.Empty; string script = String.Empty; using (var context = contextFactory.CreateDbContext()) { - sqlConnectionString = context.Database.GetConnectionString(); - if (bTruncateData) // clear table - { - script = "truncate table dbo.Schedules"; - Log.Logger.Information("Schedules will be truncated"); - } - else // load data to table - { - var path = Path.Combine(Environment.CurrentDirectory, "wwwroot", "data", "CreateSchedules.sql"); - FileInfo file = new FileInfo(path); - Log.Logger.Information("Schedules will be created"); - Log.Logger.Information("Schedules SQL script file: " + file.FullName); - script = file.OpenText().ReadToEnd(); - } - if (script.Length > 0) - { - SqlConnection tmpConn; - tmpConn = new SqlConnection(); - tmpConn.ConnectionString = sqlConnectionString; - - SqlCommand myCommand = new SqlCommand(script, tmpConn); - try - { - tmpConn.Open(); - var result = myCommand.ExecuteNonQuery(); - Log.Logger.Information("Schedules records affected: "+result.ToString()); - - } - catch (Exception ex) - { - Log.Logger.Information(ex.Message); - } - } //context - + if (await context.Schedules.AnyAsync()) return; + + Schedule schedule = new Schedule(); + schedule.LocationId = (int)LocationNumber.GroveCity; + schedule.EventName = "Delivery"; + schedule.EventNote = + "Come deliver beds with us at our shop at 4004 Thistlewood Drive, Grove City. Look for signs."; + schedule.EventStatus = EventStatus.Scheduled; + schedule.EventType = EventType.Delivery; + schedule.EventDateScheduled = DateTime.Today.AddDays(7).AddHours(9); + schedule.EventDurationHours = 3; + schedule.VolunteersMax = 20; + schedule.VolunteersRegistered = 0; + schedule.DeliveryVehiclesRegistered = 0; + SeedRoutines.SetMaintFields(schedule); + await context.Schedules.AddAsync(schedule); + await context.SaveChangesAsync(); } } // Seed Schedules @@ -396,7 +378,12 @@ private static async Task SeedConfigurations(IDbContextFactory cont ConfigurationValue = "No matching records found", Section = ConfigSection.System }, - + new() + { + ConfigurationKey = ConfigNames.EventCutOffTimeDays, + ConfigurationValue = "4", + Section = ConfigSection.System + }, }; SeedRoutines.SetMaintFields(configurations); @@ -628,17 +615,12 @@ private static async Task SeedVolunteers(IDbContextFactory contextF Volunteer volunteer = new() { LocationId = location.LocationId, - VolunteeringForId = volunteeringFor.VolunteerForId, - VolunteeringForDate = DateTime.UtcNow.AddDays(new Random().Next(60)), IHaveVolunteeredBefore = YesOrNo[new Random().Next(YesOrNo.Count - 1)], FirstName = firstName, LastName = lastName, Email = $"{firstName.ToLower()}.{lastName.ToLower()}@" + EmailProviders[new Random().Next(EmailProviders.Count - 1)], Phone = phoneNumber, VehicleType = (VehicleType)new Random().Next(0, 3), - IHaveAMinivan = YesOrNo[new Random().Next(YesOrNo.Count)], - IHaveAnSUV = YesOrNo[new Random().Next(YesOrNo.Count)], - IHaveAPickupTruck = YesOrNo[new Random().Next(YesOrNo.Count)] }; try { diff --git a/BedBrigade.Data/Migrations/20240822184533_VolunteerRefactor.Designer.cs b/BedBrigade.Data/Migrations/20240822184533_VolunteerRefactor.Designer.cs new file mode 100644 index 00000000..349dcd16 --- /dev/null +++ b/BedBrigade.Data/Migrations/20240822184533_VolunteerRefactor.Designer.cs @@ -0,0 +1,1067 @@ +// +using System; +using BedBrigade.Data; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace BedBrigade.Data.Migrations +{ + [DbContext(typeof(DataContext))] + [Migration("20240822184533_VolunteerRefactor")] + partial class VolunteerRefactor + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.7") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("BedBrigade.Data.Models.BedRequest", b => + { + b.Property("BedRequestId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("BedRequestId")); + + b.Property("AgesGender") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("City") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("nvarchar(20)"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("DeliveryDate") + .HasColumnType("datetime2"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("FirstName") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("nvarchar(20)"); + + b.Property("LastName") + .IsRequired() + .HasMaxLength(25) + .HasColumnType("nvarchar(25)"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Notes") + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("NumberOfBeds") + .HasColumnType("int"); + + b.Property("Phone") + .IsRequired() + .HasMaxLength(14) + .HasColumnType("nvarchar(14)"); + + b.Property("PostalCode") + .IsRequired() + .HasMaxLength(5) + .HasColumnType("nvarchar(5)"); + + b.Property("ScheduleId") + .HasColumnType("int"); + + b.Property("SpecialInstructions") + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("State") + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("Status") + .HasColumnType("int"); + + b.Property("Street") + .IsRequired() + .HasMaxLength(40) + .HasColumnType("nvarchar(40)"); + + b.Property("TeamNumber") + .HasColumnType("int"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("BedRequestId"); + + b.HasIndex("LocationId"); + + b.HasIndex("ScheduleId"); + + b.ToTable("BedRequests"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Configuration", b => + { + b.Property("ConfigurationKey") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("ConfigurationValue") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Section") + .HasColumnType("int"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("ConfigurationKey"); + + b.ToTable("Configurations"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.ContactUs", b => + { + b.Property("ContactUsId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("ContactUsId")); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("FirstName") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("nvarchar(20)"); + + b.Property("LastName") + .IsRequired() + .HasMaxLength(25) + .HasColumnType("nvarchar(25)"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("Phone") + .IsRequired() + .HasMaxLength(14) + .HasColumnType("nvarchar(14)"); + + b.Property("Status") + .HasColumnType("int"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("ContactUsId"); + + b.HasIndex("LocationId"); + + b.HasIndex("Status"); + + b.ToTable("ContactUs"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Content", b => + { + b.Property("ContentId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("ContentId")); + + b.Property("ContentHtml") + .HasColumnType("nvarchar(max)"); + + b.Property("ContentType") + .HasColumnType("int"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("Title") + .IsRequired() + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("ContentId"); + + b.HasIndex("ContentType"); + + b.HasIndex("LocationId"); + + b.ToTable("Content"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Donation", b => + { + b.Property("DonationId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("DonationId")); + + b.Property("Amount") + .HasColumnType("decimal(18,4)"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("FirstName") + .HasMaxLength(20) + .HasColumnType("nvarchar(20)"); + + b.Property("LastName") + .HasMaxLength(25) + .HasColumnType("nvarchar(25)"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("TaxFormSent") + .HasColumnType("bit"); + + b.Property("TransactionId") + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("DonationId"); + + b.HasIndex("LocationId"); + + b.ToTable("Donations"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.EmailQueue", b => + { + b.Property("EmailQueueId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("EmailQueueId")); + + b.Property("Body") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("FailureMessage") + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("FirstName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("FromAddress") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("FromDisplayName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("HtmlBody") + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("LockDate") + .HasColumnType("datetime2"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Priority") + .HasColumnType("int"); + + b.Property("QueueDate") + .HasColumnType("datetime2"); + + b.Property("ReplyToAddress") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("SentDate") + .HasColumnType("datetime2"); + + b.Property("Status") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("Subject") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("ToAddress") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("ToDisplayName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("EmailQueueId"); + + b.ToTable("EmailQueue"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Location", b => + { + b.Property("LocationId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("LocationId")); + + b.Property("Address1") + .HasMaxLength(128) + .HasColumnType("nvarchar(128)"); + + b.Property("Address2") + .HasMaxLength(128) + .HasColumnType("nvarchar(128)"); + + b.Property("City") + .HasMaxLength(128) + .HasColumnType("nvarchar(128)"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Latitude") + .HasColumnType("decimal(18,10)"); + + b.Property("Longitude") + .HasColumnType("decimal(18,10)"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("nvarchar(128)"); + + b.Property("PostalCode") + .IsRequired() + .HasMaxLength(10) + .HasColumnType("nvarchar(10)"); + + b.Property("Route") + .IsRequired() + .HasMaxLength(256) + .HasColumnType("nvarchar(256)"); + + b.Property("State") + .HasMaxLength(128) + .HasColumnType("nvarchar(128)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("LocationId"); + + b.ToTable("Locations"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Media", b => + { + b.Property("MediaId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("MediaId")); + + b.Property("AltText") + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("FileName") + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("FilePath") + .HasMaxLength(260) + .HasColumnType("nvarchar(260)"); + + b.Property("FileSize") + .HasColumnType("int"); + + b.Property("FileStatus") + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("FileUse") + .HasColumnType("int"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("MediaType") + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("MediaId"); + + b.HasIndex("LocationId"); + + b.ToTable("Media"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Role", b => + { + b.Property("RoleId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("RoleId")); + + b.Property("Name") + .IsRequired() + .HasMaxLength(128) + .HasColumnType("nvarchar(128)"); + + b.HasKey("RoleId"); + + b.ToTable("Roles"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Schedule", b => + { + b.Property("ScheduleId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("ScheduleId")); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("DeliveryVehiclesRegistered") + .HasColumnType("int"); + + b.Property("EventDateScheduled") + .HasColumnType("datetime2"); + + b.Property("EventDurationHours") + .HasColumnType("int"); + + b.Property("EventName") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("EventNote") + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("EventStatus") + .HasColumnType("int"); + + b.Property("EventType") + .HasColumnType("int"); + + b.Property("GroupName") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("VolunteersMax") + .HasColumnType("int"); + + b.Property("VolunteersRegistered") + .HasColumnType("int"); + + b.HasKey("ScheduleId"); + + b.HasIndex("EventType"); + + b.HasIndex("LocationId"); + + b.ToTable("Schedules"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Template", b => + { + b.Property("TemplateId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("TemplateId")); + + b.Property("ContentHtml") + .HasColumnType("nvarchar(max)"); + + b.Property("ContentType") + .HasColumnType("int"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(30) + .HasColumnType("nvarchar(30)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("TemplateId"); + + b.ToTable("Templates"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.User", b => + { + b.Property("UserName") + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("FirstName") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("nvarchar(20)"); + + b.Property("FkRole") + .HasColumnType("int"); + + b.Property("LastName") + .IsRequired() + .HasMaxLength(25) + .HasColumnType("nvarchar(25)"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("PasswordHash") + .HasMaxLength(255) + .HasColumnType("varbinary(255)"); + + b.Property("PasswordSalt") + .HasMaxLength(255) + .HasColumnType("varbinary(255)"); + + b.Property("PersistBedRequest") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("PersistConfig") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("PersistDonation") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("PersistLocation") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("PersistMedia") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("PersistPages") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("PersistUser") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("PersistVolunteers") + .IsRequired() + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("Phone") + .IsRequired() + .HasMaxLength(14) + .HasColumnType("nvarchar(14)"); + + b.Property("Role") + .HasColumnType("nvarchar(max)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("UserName"); + + b.HasIndex("LocationId"); + + b.ToTable("Users"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Volunteer", b => + { + b.Property("VolunteerId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("VolunteerId")); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Email") + .IsRequired() + .HasMaxLength(255) + .HasColumnType("nvarchar(255)"); + + b.Property("FirstName") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("nvarchar(20)"); + + b.Property("IHaveVolunteeredBefore") + .HasColumnType("bit"); + + b.Property("LastName") + .IsRequired() + .HasMaxLength(25) + .HasColumnType("nvarchar(25)"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Message") + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("OrganizationOrGroup") + .HasMaxLength(80) + .HasColumnType("nvarchar(80)"); + + b.Property("Phone") + .IsRequired() + .HasMaxLength(14) + .HasColumnType("nvarchar(14)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("VehicleType") + .HasColumnType("int"); + + b.HasKey("VolunteerId"); + + b.HasIndex("LocationId"); + + b.ToTable("Volunteers"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.VolunteerEvent", b => + { + b.Property("RegistrationId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("RegistrationId")); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("LocationId") + .HasColumnType("int"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("ScheduleId") + .HasColumnType("int"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("VolunteerEventNote") + .HasMaxLength(4000) + .HasColumnType("nvarchar(4000)"); + + b.Property("VolunteerId") + .HasColumnType("int"); + + b.HasKey("RegistrationId"); + + b.HasIndex("VolunteerId"); + + b.ToTable("VolunteerEvents"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.VolunteerFor", b => + { + b.Property("VolunteerForId") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("VolunteerForId")); + + b.Property("CreateDate") + .HasColumnType("datetime2"); + + b.Property("CreateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("MachineName") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(50) + .HasColumnType("nvarchar(50)"); + + b.Property("UpdateDate") + .HasColumnType("datetime2"); + + b.Property("UpdateUser") + .HasMaxLength(100) + .HasColumnType("nvarchar(100)"); + + b.HasKey("VolunteerForId"); + + b.ToTable("VolunteersFor"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.BedRequest", b => + { + b.HasOne("BedBrigade.Data.Models.Location", null) + .WithMany("BedRequests") + .HasForeignKey("LocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.ContactUs", b => + { + b.HasOne("BedBrigade.Data.Models.Location", null) + .WithMany("ContactUs") + .HasForeignKey("LocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Content", b => + { + b.HasOne("BedBrigade.Data.Models.Location", null) + .WithMany("Contents") + .HasForeignKey("LocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Donation", b => + { + b.HasOne("BedBrigade.Data.Models.Location", null) + .WithMany("Donations") + .HasForeignKey("LocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Media", b => + { + b.HasOne("BedBrigade.Data.Models.Location", null) + .WithMany("Media") + .HasForeignKey("LocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Schedule", b => + { + b.HasOne("BedBrigade.Data.Models.Location", null) + .WithMany("Schedules") + .HasForeignKey("LocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.User", b => + { + b.HasOne("BedBrigade.Data.Models.Location", null) + .WithMany("Users") + .HasForeignKey("LocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Volunteer", b => + { + b.HasOne("BedBrigade.Data.Models.Location", null) + .WithMany("Volunteers") + .HasForeignKey("LocationId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.VolunteerEvent", b => + { + b.HasOne("BedBrigade.Data.Models.Volunteer", "Volunteer") + .WithMany() + .HasForeignKey("VolunteerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Volunteer"); + }); + + modelBuilder.Entity("BedBrigade.Data.Models.Location", b => + { + b.Navigation("BedRequests"); + + b.Navigation("ContactUs"); + + b.Navigation("Contents"); + + b.Navigation("Donations"); + + b.Navigation("Media"); + + b.Navigation("Schedules"); + + b.Navigation("Users"); + + b.Navigation("Volunteers"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/BedBrigade.Data/Migrations/20240822184533_VolunteerRefactor.cs b/BedBrigade.Data/Migrations/20240822184533_VolunteerRefactor.cs new file mode 100644 index 00000000..b68bbc1b --- /dev/null +++ b/BedBrigade.Data/Migrations/20240822184533_VolunteerRefactor.cs @@ -0,0 +1,114 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace BedBrigade.Data.Migrations +{ + /// + public partial class VolunteerRefactor : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropIndex( + name: "IX_Volunteers_VolunteeringForId", + table: "Volunteers"); + + migrationBuilder.DropColumn( + name: "IHaveAMinivan", + table: "Volunteers"); + + migrationBuilder.DropColumn( + name: "IHaveAPickupTruck", + table: "Volunteers"); + + migrationBuilder.DropColumn( + name: "IHaveAnSUV", + table: "Volunteers"); + + migrationBuilder.DropColumn( + name: "VolunteeringForDate", + table: "Volunteers"); + + migrationBuilder.DropColumn( + name: "VolunteeringForId", + table: "Volunteers"); + + migrationBuilder.DropColumn( + name: "VehiclesDeliveryMax", + table: "Schedules"); + + migrationBuilder.RenameColumn( + name: "VehiclesNormalMax", + table: "Schedules", + newName: "EventDurationHours"); + + migrationBuilder.RenameColumn( + name: "VehiclesDeliveryRegistered", + table: "Schedules", + newName: "DeliveryVehiclesRegistered"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.RenameColumn( + name: "EventDurationHours", + table: "Schedules", + newName: "VehiclesNormalMax"); + + migrationBuilder.RenameColumn( + name: "DeliveryVehiclesRegistered", + table: "Schedules", + newName: "VehiclesDeliveryRegistered"); + + migrationBuilder.AddColumn( + name: "IHaveAMinivan", + table: "Volunteers", + type: "bit", + nullable: false, + defaultValue: false); + + migrationBuilder.AddColumn( + name: "IHaveAPickupTruck", + table: "Volunteers", + type: "bit", + nullable: false, + defaultValue: false); + + migrationBuilder.AddColumn( + name: "IHaveAnSUV", + table: "Volunteers", + type: "bit", + nullable: false, + defaultValue: false); + + migrationBuilder.AddColumn( + name: "VolunteeringForDate", + table: "Volunteers", + type: "datetime2", + nullable: false, + defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)); + + migrationBuilder.AddColumn( + name: "VolunteeringForId", + table: "Volunteers", + type: "int", + nullable: false, + defaultValue: 0); + + migrationBuilder.AddColumn( + name: "VehiclesDeliveryMax", + table: "Schedules", + type: "int", + nullable: false, + defaultValue: 0); + + migrationBuilder.CreateIndex( + name: "IX_Volunteers_VolunteeringForId", + table: "Volunteers", + column: "VolunteeringForId"); + } + } +} diff --git a/BedBrigade.Data/Migrations/DataContextModelSnapshot.cs b/BedBrigade.Data/Migrations/DataContextModelSnapshot.cs index 2ac93800..4eb9bbbd 100644 --- a/BedBrigade.Data/Migrations/DataContextModelSnapshot.cs +++ b/BedBrigade.Data/Migrations/DataContextModelSnapshot.cs @@ -598,9 +598,15 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasMaxLength(100) .HasColumnType("nvarchar(100)"); + b.Property("DeliveryVehiclesRegistered") + .HasColumnType("int"); + b.Property("EventDateScheduled") .HasColumnType("datetime2"); + b.Property("EventDurationHours") + .HasColumnType("int"); + b.Property("EventName") .IsRequired() .HasMaxLength(50) @@ -634,15 +640,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasMaxLength(100) .HasColumnType("nvarchar(100)"); - b.Property("VehiclesDeliveryMax") - .HasColumnType("int"); - - b.Property("VehiclesDeliveryRegistered") - .HasColumnType("int"); - - b.Property("VehiclesNormalMax") - .HasColumnType("int"); - b.Property("VolunteersMax") .HasColumnType("int"); @@ -833,15 +830,6 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasMaxLength(20) .HasColumnType("nvarchar(20)"); - b.Property("IHaveAMinivan") - .HasColumnType("bit"); - - b.Property("IHaveAPickupTruck") - .HasColumnType("bit"); - - b.Property("IHaveAnSUV") - .HasColumnType("bit"); - b.Property("IHaveVolunteeredBefore") .HasColumnType("bit"); @@ -880,18 +868,10 @@ protected override void BuildModel(ModelBuilder modelBuilder) b.Property("VehicleType") .HasColumnType("int"); - b.Property("VolunteeringForDate") - .HasColumnType("datetime2"); - - b.Property("VolunteeringForId") - .HasColumnType("int"); - b.HasKey("VolunteerId"); b.HasIndex("LocationId"); - b.HasIndex("VolunteeringForId"); - b.ToTable("Volunteers"); }); diff --git a/BedBrigade.Data/Services/IScheduleDataService.cs b/BedBrigade.Data/Services/IScheduleDataService.cs index 2d4f7d9e..f5793214 100644 --- a/BedBrigade.Data/Services/IScheduleDataService.cs +++ b/BedBrigade.Data/Services/IScheduleDataService.cs @@ -5,5 +5,5 @@ namespace BedBrigade.Data.Services public interface IScheduleDataService : IRepository { Task>> GetFutureSchedulesByLocationId(int locationId); - } + Task>> GetAvailableSchedulesByLocationId(int locationId); } } \ No newline at end of file diff --git a/BedBrigade.Data/Services/IVolunteerDataService.cs b/BedBrigade.Data/Services/IVolunteerDataService.cs index 9431aed0..b6ea22ce 100644 --- a/BedBrigade.Data/Services/IVolunteerDataService.cs +++ b/BedBrigade.Data/Services/IVolunteerDataService.cs @@ -9,5 +9,6 @@ public interface IVolunteerDataService : IRepository Task>> GetDistinctEmailByLocation(int locationId); Task>> GetVolunteerEmailsWithDeliveryVehicles(int locationId); Task>> GetVolunteerEmailsForASchedule(int scheduleId); + Task> GetByEmail(string email); } } \ No newline at end of file diff --git a/BedBrigade.Data/Services/ScheduleDataService.cs b/BedBrigade.Data/Services/ScheduleDataService.cs index 9e91dd99..54ee61b3 100644 --- a/BedBrigade.Data/Services/ScheduleDataService.cs +++ b/BedBrigade.Data/Services/ScheduleDataService.cs @@ -2,6 +2,8 @@ using Microsoft.AspNetCore.Components.Authorization; using Microsoft.EntityFrameworkCore; using System.Data.Common; +using BedBrigade.Common.Constants; +using BedBrigade.Common.Enums; namespace BedBrigade.Data.Services; @@ -9,14 +11,64 @@ public class ScheduleDataService : Repository, IScheduleDataService { private readonly IDbContextFactory _contextFactory; private readonly ICachingService _cachingService; + private readonly IConfigurationDataService _configurationDataService; - public ScheduleDataService(IDbContextFactory contextFactory, ICachingService cachingService, - AuthenticationStateProvider authProvider) : base(contextFactory, cachingService, authProvider) + public ScheduleDataService(IDbContextFactory contextFactory, + ICachingService cachingService, + AuthenticationStateProvider authProvider, + IConfigurationDataService configurationDataService) : base(contextFactory, cachingService, authProvider) { _contextFactory = contextFactory; _cachingService = cachingService; + _configurationDataService = configurationDataService; } + public async Task>> GetAvailableSchedulesByLocationId(int locationId) + { + string cacheKey = + _cachingService.BuildCacheKey(GetEntityName(), $"GetAvailableLocationEvents({locationId})"); + List? cachedContent = _cachingService.Get>(cacheKey); + + if (cachedContent != null) + { + return new ServiceResponse>($"Found {cachedContent.Count()} GetAvailableLocationEvents in cache", + true, cachedContent); + } + + int eventCutOffTimeDays; + + try + { + eventCutOffTimeDays = + await _configurationDataService.GetConfigValueAsIntAsync(ConfigSection.System, + ConfigNames.EventCutOffTimeDays); + } + catch (Exception ex) + { + return new ServiceResponse>($"{ex.Message}", false, null); + } + + try + { + using (var ctx = _contextFactory.CreateDbContext()) + { + var dbSet = ctx.Set(); + var result = await dbSet + .Where(o => o.LocationId == locationId + && o.EventStatus == EventStatus.Scheduled + && o.EventDateScheduled.Date >= DateTime.Today.AddDays(eventCutOffTimeDays) + && (o.VolunteersMax == 0 || o.VolunteersRegistered < o.VolunteersMax)) + .OrderBy(o => o.EventDateScheduled).ToListAsync(); + _cachingService.Set(cacheKey, result); + return new ServiceResponse>($"Found {result.Count()} {GetEntityName()}", true, result); + } + } + catch (DbException ex) + { + return new ServiceResponse>( + $"Error GetFutureSchedulesByLocationId for {GetEntityName()}: {ex.Message} ({ex.ErrorCode})", false, null); + } + } public async Task>> GetFutureSchedulesByLocationId(int locationId) { @@ -26,7 +78,7 @@ public async Task>> GetFutureSchedulesByLocationI if (cachedContent != null) { - return new ServiceResponse>($"Found {cachedContent.Count()} {GetEntityName()} in cache", + return new ServiceResponse>($"Found {cachedContent.Count()} GetFutureSchedulesByLocationId in cache", true, cachedContent); } diff --git a/BedBrigade.Data/Services/VolunteerDataService.cs b/BedBrigade.Data/Services/VolunteerDataService.cs index c6efafb8..76aad0b4 100644 --- a/BedBrigade.Data/Services/VolunteerDataService.cs +++ b/BedBrigade.Data/Services/VolunteerDataService.cs @@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Components.Authorization; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Internal; +using System.Data.Common; namespace BedBrigade.Data.Services; @@ -60,21 +61,68 @@ public async Task>> GetVolunteerEmailsWithDeliveryV public async Task>> GetVolunteerEmailsForASchedule(int scheduleId) { - string cacheKey = _cachingService.BuildCacheKey(GetEntityName(), $"GetVolunteerEmailsForASchedule({scheduleId})"); + string cacheKey = + _cachingService.BuildCacheKey(GetEntityName(), $"GetVolunteerEmailsForASchedule({scheduleId})"); var cachedContent = _cachingService.Get>(cacheKey); if (cachedContent != null) - return new ServiceResponse>($"Found {cachedContent.Count} {GetEntityName()} records in cache", true, cachedContent); ; - - using (var ctx = _contextFactory.CreateDbContext()) + return new ServiceResponse>($"Found {cachedContent.Count} {GetEntityName()} records in cache", + true, cachedContent); + ; + try + { + using (var ctx = _contextFactory.CreateDbContext()) + { + var result = await ctx.VolunteerEvents + .Where(o => o.ScheduleId == scheduleId) + .Select(b => b.Volunteer.Email) + .Distinct().ToListAsync(); + + _cachingService.Set(cacheKey, result); + return new ServiceResponse>($"Found {result.Count()} {GetEntityName()} records", true, + result); + } + } + catch (DbException ex) { - var result = await ctx.VolunteerEvents - .Where(o => o.ScheduleId == scheduleId) - .Select(b => b.Volunteer.Email) - .Distinct().ToListAsync(); + return new ServiceResponse>( + $"Could not GetVolunteerEmailsForASchedule {GetEntityName()} with scheduleId {scheduleId}: {ex.Message} ({ex.ErrorCode})", + false); + } + } - _cachingService.Set(cacheKey, result); - return new ServiceResponse>($"Found {result.Count()} {GetEntityName()} records", true, result); + public async Task> GetByEmail(string email) + { + string cacheKey = _cachingService.BuildCacheKey(GetEntityName(), $"GetByEmail({email})"); + var cachedContent = _cachingService.Get(cacheKey); + + if (cachedContent != null) + return new ServiceResponse($"Found GetByEmail({email}) in cache", true, cachedContent); + + try + { + using (var ctx = _contextFactory.CreateDbContext()) + { + var dbSet = ctx.Set(); + var result = await dbSet.FirstOrDefaultAsync(o => o.Email == email); + + if (result != null) + { + _cachingService.Set(cacheKey, result); + + return new ServiceResponse($"Found GetByEmail({email})", true, result); + } + else + { + return new ServiceResponse($"GetByEmail({email}) not found", false); + } + } + } + catch (DbException ex) + { + return new ServiceResponse( + $"Could not GetByEmail for Volunteer {email}: {ex.Message} ({ex.ErrorCode})", + false); } } }