From 3dfd2538a0e1b334219283bacfcc3ae038cc40b3 Mon Sep 17 00:00:00 2001 From: Oyvind Timian Dokk Husveg Date: Wed, 27 Aug 2025 13:19:59 +0200 Subject: [PATCH 1/2] Seeding attempt --- api-cinema-challenge/api-cinema-challenge.sln | 1 + .../Data/CinemaContext.cs | 19 +- .../api-cinema-challenge/Data/Seeder.cs | 198 ++++++++++++++++++ .../Endpoints/CustomerAPI.cs | 6 + .../api-cinema-challenge/Models/Customer.cs | 18 ++ .../api-cinema-challenge/Models/Movie.cs | 19 ++ .../api-cinema-challenge/Models/Screening.cs | 18 ++ .../api-cinema-challenge/Models/Ticket.cs | 20 ++ .../api-cinema-challenge/Program.cs | 11 + .../Repository/IRepository.cs | 14 ++ .../Repository/Repository.cs | 77 +++++++ .../api-cinema-challenge.csproj | 2 +- .../appsettings.example.json | 12 -- 13 files changed, 399 insertions(+), 16 deletions(-) create mode 100644 api-cinema-challenge/api-cinema-challenge/Data/Seeder.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Endpoints/CustomerAPI.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Models/Customer.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Models/Movie.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Models/Screening.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Models/Ticket.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Repository/IRepository.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Repository/Repository.cs delete mode 100644 api-cinema-challenge/api-cinema-challenge/appsettings.example.json diff --git a/api-cinema-challenge/api-cinema-challenge.sln b/api-cinema-challenge/api-cinema-challenge.sln index 9cd490f5..3bbaf855 100644 --- a/api-cinema-challenge/api-cinema-challenge.sln +++ b/api-cinema-challenge/api-cinema-challenge.sln @@ -8,6 +8,7 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3C371BAA-344D-4C8A-AF08-7829816D726F}" ProjectSection(SolutionItems) = preProject ..\.gitignore = ..\.gitignore + ..\..\..\..\Downloads\Cinema.drawio.png = ..\..\..\..\Downloads\Cinema.drawio.png ..\README.md = ..\README.md EndProjectSection EndProject diff --git a/api-cinema-challenge/api-cinema-challenge/Data/CinemaContext.cs b/api-cinema-challenge/api-cinema-challenge/Data/CinemaContext.cs index ad4fe854..c4d0e500 100644 --- a/api-cinema-challenge/api-cinema-challenge/Data/CinemaContext.cs +++ b/api-cinema-challenge/api-cinema-challenge/Data/CinemaContext.cs @@ -1,5 +1,8 @@ -using Microsoft.EntityFrameworkCore; +using api_cinema_challenge.Models; +using Microsoft.EntityFrameworkCore; using Newtonsoft.Json.Linq; +using System.Diagnostics; +using System.Numerics; namespace api_cinema_challenge.Data { @@ -9,18 +12,28 @@ public class CinemaContext : DbContext public CinemaContext(DbContextOptions options) : base(options) { var configuration = new ConfigurationBuilder().AddJsonFile("appsettings.json").Build(); - _connectionString = configuration.GetValue("ConnectionStrings:DefaultConnectionString")!; + _connectionString = configuration.GetValue("ConnectionStrings:DefaultConnection")!; this.Database.EnsureCreated(); } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseNpgsql(_connectionString); + //optionsBuilder.LogTo(message => Debug.WriteLine(message)); } protected override void OnModelCreating(ModelBuilder modelBuilder) { - + Seeder seeder = new Seeder(); + modelBuilder.Entity().HasData(seeder.Customers); + modelBuilder.Entity().HasData(seeder.Movies); + modelBuilder.Entity().HasData(seeder.Screenings); + modelBuilder.Entity().HasData(seeder.Tickets); } + + public DbSet Customers { get; set; } + public DbSet Movie { get; set; } + public DbSet Screening { get; set; } + public DbSet Ticket { get; set; } } } diff --git a/api-cinema-challenge/api-cinema-challenge/Data/Seeder.cs b/api-cinema-challenge/api-cinema-challenge/Data/Seeder.cs new file mode 100644 index 00000000..0db37934 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Data/Seeder.cs @@ -0,0 +1,198 @@ +using api_cinema_challenge.Models; + +namespace api_cinema_challenge.Data +{ + public class Seeder + { + + List movies = new List + { + "The Shawshank Redemption | 9.3 | 142 | Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", + "The Godfather | 9.2 | 175 | The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son.", + "The Dark Knight | 9.1 | 252 | When the menace known as the Joker wreaks havoc and chaos on Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.", + "Pulp Fiction | 8.8 | 254 | The lives of two mob hitmen, a boxer, a gangster's wife, and a pair of diner bandits intertwine in four tales of violence and redemption.", + "Forrest Gump | 8.8 | 242 | The presidencies of Kennedy and Johnson, the Vietnam War, and other history unfold through the perspective of an Alabama man with an IQ of 75.", + "Inception | 8.8 | 248 | A thief who steals corporate secrets through dream-sharing technology is given the inverse task of planting an idea into the mind of a CEO.", + "Fight Club | 8.8 | 239 | An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into something much more.", + "The Matrix | 8.7 | 236 | A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.", + "Interstellar | 8.7 | 269 | A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.", + "Parasite | 8.5 | 232 | Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan." + }; + + private List _firstnames = new List() + { + "Audrey", + "Donald", + "Elvis", + "Barack", + "Oprah", + "Jimi", + "Mick", + "Kate", + "Charles", + "Kate", + "Messi", + "Lionel", + "Taylor", + "Bill", + "Cristiano", + "Serena", + "Roger", + "Rafael", + "Leonardo", + "Timian" + }; + private List _lastnames = new List() + { + "Hepburn", + "Trump", + "Presley", + "Obama", + "Winfrey", + "Hendrix", + "Jagger", + "Winslet", + "Windsor", + "Middleton", + "Einstein", + "Monroe", + "DiCaprio", + "Swift", + "Jackson", + "Williams", + "Ronaldo", + "Messi", + "Jolie", + "Freeman", + "Depp", + "Gates", + "Federer", + "Nadal", + "Husveg", + "Clinton" + }; + private List _domain = new List() + { + "bbc.co.uk", + "google.com", + "theworld.ca", + "something.com", + "tesla.com", + "nasa.org.us", + "gov.us", + "gov.gr", + "gov.nl", + "gov.ru", + "amazon.com", + "microsoft.com", + "apple.com", + "openai.com", + "wikipedia.org", + "who.int", + "un.org", + "reddit.com", + "stackoverflow.com", + "harvard.edu", + "ox.ac.uk", + "mit.edu", + "tokyo.ac.jp", + "sydney.edu.au", + "vg.no", + "nrk.no", + "dagbladet.no", + "aftenposten.no", + "dn.no", + "uit.no", + "uio.no", + "ntnu.no", + "nmbu.no", + "regjeringen.no", + }; + + private List _movies = new List(); + private List _customers = new List(); + private List _screenings = new List(); + private List _tickets = new List(); + + private DateTime somedate = new DateTime(2020, 12, 05, 0, 0, 0, DateTimeKind.Utc); + + private int guiditerator = 1; + public Guid GetNewGuid() + { + var r = new Random(guiditerator); + var guid = new byte[16]; + r.NextBytes(guid); + guiditerator++; + + return new Guid(guid); + } + + public Seeder() + { + Random DayRandom = new Random(1); + Random CustomerRandom = new Random(2); + Random MovieRandom = new Random(3); + Random TicketRandom = new Random(4); + foreach (var movie in movies) + { + string title = movie.Split("|")[0].Trim(); + _movies.Add(new Movie { + Id = GetNewGuid(), + Title = title, + Rating = movie.Split("|")[1].Trim(), + Description = movie.Split("|")[3].Trim(), + RuntimeMins = int.Parse(movie.Split("|")[2].Trim()), + CreatedAt = somedate.AddDays(DayRandom.Next(0,10)), + UpdatedAt = DayRandom.Next(0, 5) == 4 ? null : somedate.AddDays(-DayRandom.Next(10, 1000)) + }); + } + + for (int x = 1; x < 250; x++) + { + string name = _firstnames[CustomerRandom.Next(_firstnames.Count)] + " " + _lastnames[CustomerRandom.Next(_lastnames.Count)]; + Customer customer = new Customer(); + customer.Id = GetNewGuid(); + customer.Name = name; + customer.Email = $"{customer.Name.Split(" ")[0]}.{customer.Name.Split(" ")[1]}@{_domain[CustomerRandom.Next(_domain.Count)]}".ToLower(); + customer.Phone = $"+47{CustomerRandom.Next(10000000, 99999999)}"; + _customers.Add(customer); + } + + foreach( var movie in _movies) + { + int ranLoop = DayRandom.Next(0, 10); + for (int i = 0; i < ranLoop; i++) + { + if (MovieRandom.Next(0, 5) == 5) continue; + Screening screening = new Screening(); + screening.Id = GetNewGuid(); + screening.ScreenNumber = MovieRandom.Next(1, 6); + screening.Capacity = MovieRandom.Next(20, 400); + screening.CreatedAt = somedate.AddDays(DayRandom.Next(0, 10)); + screening.StartsAt = somedate.AddDays(DayRandom.Next(11, 25)); + screening.UpdatedAt = somedate.AddDays(DayRandom.Next(11, 25)); + _screenings.Add(screening); + } + } + foreach (var screening in _screenings) + { + for (int i = 0; i < screening.Capacity; i += TicketRandom.Next(1, 10)) + { + Ticket ticket = new Ticket(); + ticket.Id = GetNewGuid(); + ticket.NumSeats = i; + ticket.ScreeningId = screening.Id; + ticket.CustomerId = _customers[TicketRandom.Next(_customers.Count())].Id; + ticket.CreatedAt = screening.CreatedAt.AddDays(DayRandom.Next(0,10)); + ticket.UpdatedAt = DayRandom.Next(0, 5) == 4 ? null :ticket.CreatedAt.AddMinutes(DayRandom.Next(5, 900)); + _tickets.Add(ticket); + } + } + + } + public List Customers { get { return _customers; } } + public List Movies { get { return _movies; } } + public List Screenings { get { return _screenings; } } + public List Tickets { get { return _tickets; } } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Endpoints/CustomerAPI.cs b/api-cinema-challenge/api-cinema-challenge/Endpoints/CustomerAPI.cs new file mode 100644 index 00000000..037d8e12 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Endpoints/CustomerAPI.cs @@ -0,0 +1,6 @@ +namespace api_cinema_challenge.Endpoints +{ + public class CustomerAPI + { + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Models/Customer.cs b/api-cinema-challenge/api-cinema-challenge/Models/Customer.cs new file mode 100644 index 00000000..632c786b --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Models/Customer.cs @@ -0,0 +1,18 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace api_cinema_challenge.Models +{ + [Table("customers")] + public class Customer + { + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public Guid Id { get; set; } + public string Name { get; set; } + public string Email { get; set; } + public string Phone { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime? UpdatedAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Models/Movie.cs b/api-cinema-challenge/api-cinema-challenge/Models/Movie.cs new file mode 100644 index 00000000..1e902f78 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Models/Movie.cs @@ -0,0 +1,19 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace api_cinema_challenge.Models +{ + [Table("movies")] + public class Movie + { + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public Guid Id { get; set; } + public string Title { get; set; } + public string Rating { get; set; } + public string Description { get; set; } + public int RuntimeMins { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime? UpdatedAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Models/Screening.cs b/api-cinema-challenge/api-cinema-challenge/Models/Screening.cs new file mode 100644 index 00000000..35e8e511 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Models/Screening.cs @@ -0,0 +1,18 @@ +using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations; + +namespace api_cinema_challenge.Models +{ + [Table("screenings")] + public class Screening + { + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public Guid Id { get; set; } + public int ScreenNumber { get; set; } + public int Capacity { get; set; } + public DateTime StartsAt { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime? UpdatedAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Models/Ticket.cs b/api-cinema-challenge/api-cinema-challenge/Models/Ticket.cs new file mode 100644 index 00000000..ad0ba184 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Models/Ticket.cs @@ -0,0 +1,20 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace api_cinema_challenge.Models +{ + [Table("tickets")] + public class Ticket + { + [Key] + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] + public Guid Id { get; set; } + public int NumSeats { get; set; } + [ForeignKey("customer")] + public Guid CustomerId { get; set; } + [ForeignKey("screening")] + public Guid ScreeningId { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime? UpdatedAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Program.cs b/api-cinema-challenge/api-cinema-challenge/Program.cs index e55d9d54..8cb9f709 100644 --- a/api-cinema-challenge/api-cinema-challenge/Program.cs +++ b/api-cinema-challenge/api-cinema-challenge/Program.cs @@ -1,4 +1,7 @@ using api_cinema_challenge.Data; +using api_cinema_challenge.Models; +using api_cinema_challenge.Repository; +using System.Numerics; var builder = WebApplication.CreateBuilder(args); @@ -6,6 +9,11 @@ builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); builder.Services.AddDbContext(); +builder.Services.AddScoped, Repository>(); +builder.Services.AddScoped, Repository>(); +builder.Services.AddScoped, Repository>(); +builder.Services.AddScoped, Repository>(); + var app = builder.Build(); @@ -17,4 +25,7 @@ } app.UseHttpsRedirection(); + + + app.Run(); diff --git a/api-cinema-challenge/api-cinema-challenge/Repository/IRepository.cs b/api-cinema-challenge/api-cinema-challenge/Repository/IRepository.cs new file mode 100644 index 00000000..70a594ea --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Repository/IRepository.cs @@ -0,0 +1,14 @@ +namespace api_cinema_challenge.Repository +{ + public interface IRepository + { + Task> Get(); + Task Insert(T entity); + Task Update(T entity); + Task Delete(object id); + Task GetById(int id); + Task GetById(int id1, int id2, Func, IQueryable> includeQuery); + Task GetById(int id, Func, IQueryable> includeQuery); + Task> GetWithIncludes(Func, IQueryable> includeQuery); + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Repository/Repository.cs b/api-cinema-challenge/api-cinema-challenge/Repository/Repository.cs new file mode 100644 index 00000000..908cc31f --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Repository/Repository.cs @@ -0,0 +1,77 @@ +using api_cinema_challenge.Data; +using Microsoft.EntityFrameworkCore; + +namespace api_cinema_challenge.Repository +{ + public class Repository : IRepository where T : class + { + private CinemaContext _db; + private DbSet _table = null!; + + public Repository(CinemaContext db) + { + _db = db; + _table = _db.Set() ; + } + + public async Task> Get() + { + return await _table.ToListAsync(); + } + + public async Task Insert(T entity) + { + await _table.AddAsync(entity); + await _db.SaveChangesAsync(); + return entity; + } + public async Task Update(T entity) + { + _table.Attach(entity); + _db.Entry(entity).State = EntityState.Modified; + await _db.SaveChangesAsync(); + return entity; + } + + public async Task Delete(object id) + { + T? entity = await _table.FindAsync(id); + if (entity == null) return null; + _table.Remove(entity); + await _db.SaveChangesAsync(); + return entity; + } + + public async Task Delete(T entity) + { + _table.Remove(entity); + await _db.SaveChangesAsync(); + return entity; + } + + public async Task GetById(int id) + { + return await _table.FindAsync(id); + } + + public async Task GetById(int id1, int id2, Func, IQueryable> includeQuery) + { + IQueryable query = _table.Where(e => EF.Property(e, "PatientId") == id1 && EF.Property(e, "DoctorId") == id2); + query = includeQuery(query); + return await query.FirstOrDefaultAsync(); + } + + public async Task GetById(int id, Func, IQueryable> includeQuery) + { + IQueryable query = _table.Where(e => EF.Property(e, "Id") == id); + query = includeQuery(query); + return await query.FirstOrDefaultAsync(); + } + + public async Task> GetWithIncludes(Func, IQueryable> includeQuery) + { + IQueryable query = includeQuery(_table); + return await query.ToListAsync(); + } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/api-cinema-challenge.csproj b/api-cinema-challenge/api-cinema-challenge/api-cinema-challenge.csproj index 11e5c66b..40acc625 100644 --- a/api-cinema-challenge/api-cinema-challenge/api-cinema-challenge.csproj +++ b/api-cinema-challenge/api-cinema-challenge/api-cinema-challenge.csproj @@ -28,7 +28,7 @@ - + diff --git a/api-cinema-challenge/api-cinema-challenge/appsettings.example.json b/api-cinema-challenge/api-cinema-challenge/appsettings.example.json deleted file mode 100644 index b9175fe6..00000000 --- a/api-cinema-challenge/api-cinema-challenge/appsettings.example.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "DefaultConnectionString": "Host=HOST; Database=DATABASE; Username=USERNAME; Password=PASSWORD;" - } -} \ No newline at end of file From e7a461a0952f321197d49ea00a54d0f0ba745cac Mon Sep 17 00:00:00 2001 From: Oyvind Timian Dokk Husveg Date: Thu, 28 Aug 2025 11:02:15 +0200 Subject: [PATCH 2/2] Core functionally working (and extensions API spec), but missing Authorization --- .../api-cinema-challenge/DTO/ApiResponse.cs | 21 + .../api-cinema-challenge/DTO/CustomerGet.cs | 12 + .../api-cinema-challenge/DTO/CustomerPost.cs | 9 + .../api-cinema-challenge/DTO/CustomerPut.cs | 9 + .../api-cinema-challenge/DTO/MovieGet.cs | 13 + .../DTO/MovieGetScreenings.cs | 15 + .../api-cinema-challenge/DTO/MoviePost.cs | 12 + .../api-cinema-challenge/DTO/MoviePut.cs | 10 + .../api-cinema-challenge/DTO/ScreeningGet.cs | 12 + .../api-cinema-challenge/DTO/ScreeningPost.cs | 9 + .../api-cinema-challenge/DTO/TicketGet.cs | 10 + .../api-cinema-challenge/DTO/TicketPost.cs | 7 + .../api-cinema-challenge/Data/Seeder.cs | 55 +- .../Endpoints/CustomerAPI.cs | 85 +- .../Endpoints/MovieAPI.cs | 103 + .../20250828082616_Firsto.Designer.cs | 4835 +++++++++++++++++ .../Migrations/20250828082616_Firsto.cs | 649 +++ .../20250828082629_Secondo.Designer.cs | 4835 +++++++++++++++++ .../Migrations/20250828082629_Secondo.cs | 648 +++ .../Migrations/CinemaContextModelSnapshot.cs | 4832 ++++++++++++++++ .../api-cinema-challenge/Models/Customer.cs | 3 +- .../api-cinema-challenge/Models/Movie.cs | 5 +- .../api-cinema-challenge/Models/Screening.cs | 6 +- .../api-cinema-challenge/Models/Ticket.cs | 7 +- .../api-cinema-challenge/Program.cs | 7 +- .../Repository/IRepository.cs | 5 +- .../Repository/Repository.cs | 6 + .../Tools/MappingProfile.cs | 34 + .../api-cinema-challenge.csproj | 5 +- 29 files changed, 16225 insertions(+), 34 deletions(-) create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/ApiResponse.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/CustomerGet.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/CustomerPost.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/CustomerPut.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/MovieGet.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/MovieGetScreenings.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/MoviePost.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/MoviePut.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/ScreeningGet.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/ScreeningPost.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/TicketGet.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/DTO/TicketPost.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Endpoints/MovieAPI.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Migrations/20250828082616_Firsto.Designer.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Migrations/20250828082616_Firsto.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Migrations/20250828082629_Secondo.Designer.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Migrations/20250828082629_Secondo.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Migrations/CinemaContextModelSnapshot.cs create mode 100644 api-cinema-challenge/api-cinema-challenge/Tools/MappingProfile.cs diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/ApiResponse.cs b/api-cinema-challenge/api-cinema-challenge/DTO/ApiResponse.cs new file mode 100644 index 00000000..7ce69c24 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/ApiResponse.cs @@ -0,0 +1,21 @@ +namespace api_cinema_challenge.DTO +{ + public class ApiResponse + { + public string Status { get; set; } = "success"; + public T Data { get; set; } + //public string? ErrorMessage { get; set; } + + + public ApiResponse(T data) + { + Data = data; + } + + public ApiResponse() + { + Status = "failed"; + //ErrorMessage = error; + } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/CustomerGet.cs b/api-cinema-challenge/api-cinema-challenge/DTO/CustomerGet.cs new file mode 100644 index 00000000..ea16b902 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/CustomerGet.cs @@ -0,0 +1,12 @@ +namespace api_cinema_challenge.DTO +{ + public class CustomerGet + { + public int Id { get; set; } + public string Name { get; set; } + public string Email { get; set; } + public string Phone { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime? UpdatedAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/CustomerPost.cs b/api-cinema-challenge/api-cinema-challenge/DTO/CustomerPost.cs new file mode 100644 index 00000000..3409e0fa --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/CustomerPost.cs @@ -0,0 +1,9 @@ +namespace api_cinema_challenge.DTO +{ + public class CustomerPost + { + public string Name { get; set; } + public string Email { get; set; } + public string Phone { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/CustomerPut.cs b/api-cinema-challenge/api-cinema-challenge/DTO/CustomerPut.cs new file mode 100644 index 00000000..0cddd4a0 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/CustomerPut.cs @@ -0,0 +1,9 @@ +namespace api_cinema_challenge.DTO +{ + public class CustomerPut + { + public string? Name { get; set; } + public string? Email { get; set; } + public string? Phone { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/MovieGet.cs b/api-cinema-challenge/api-cinema-challenge/DTO/MovieGet.cs new file mode 100644 index 00000000..d575007a --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/MovieGet.cs @@ -0,0 +1,13 @@ +namespace api_cinema_challenge.DTO +{ + public class MovieGet + { + public int Id { get; set; } + public string? Title { get; set; } + public string? Rating { get; set; } + public string? Description { get; set; } + public int RuntimeMins { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime? UpdatedAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/MovieGetScreenings.cs b/api-cinema-challenge/api-cinema-challenge/DTO/MovieGetScreenings.cs new file mode 100644 index 00000000..5e65b55a --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/MovieGetScreenings.cs @@ -0,0 +1,15 @@ +namespace api_cinema_challenge.DTO +{ + public class MovieGetScreenings + { + public int Id { get; set; } + public string? Title { get; set; } + public string? Rating { get; set; } + public string? Description { get; set; } + public int RuntimeMins { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime? UpdatedAt { get; set; } + public ICollection Screenings { get; set; } = new List(); + + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/MoviePost.cs b/api-cinema-challenge/api-cinema-challenge/DTO/MoviePost.cs new file mode 100644 index 00000000..75861420 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/MoviePost.cs @@ -0,0 +1,12 @@ +namespace api_cinema_challenge.DTO +{ + public class MoviePost + { + public string Title { get; set; } + public string Rating { get; set; } + public string Description { get; set; } + public int RuntimeMins { get; set; } + + public ICollection Screenings { get; set; } = new List(); + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/MoviePut.cs b/api-cinema-challenge/api-cinema-challenge/DTO/MoviePut.cs new file mode 100644 index 00000000..b6f1d865 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/MoviePut.cs @@ -0,0 +1,10 @@ +namespace api_cinema_challenge.DTO +{ + public class MoviePut + { + public string? Title { get; set; } + public string? Rating { get; set; } + public string? Description { get; set; } + public int RuntimeMins { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/ScreeningGet.cs b/api-cinema-challenge/api-cinema-challenge/DTO/ScreeningGet.cs new file mode 100644 index 00000000..4bc5d3b3 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/ScreeningGet.cs @@ -0,0 +1,12 @@ +namespace api_cinema_challenge.DTO +{ + public class ScreeningGet + { + public int Id { get; set; } + public int ScreenNumber { get; set; } + public int Capacity { get; set; } + public DateTime StartsAt { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime UpdatedAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/ScreeningPost.cs b/api-cinema-challenge/api-cinema-challenge/DTO/ScreeningPost.cs new file mode 100644 index 00000000..89c0d457 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/ScreeningPost.cs @@ -0,0 +1,9 @@ +namespace api_cinema_challenge.DTO +{ + public class ScreeningPost + { + public int ScreenNumber { get; set; } + public int Capacity { get; set; } + public DateTime StartsAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/TicketGet.cs b/api-cinema-challenge/api-cinema-challenge/DTO/TicketGet.cs new file mode 100644 index 00000000..a14941b2 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/TicketGet.cs @@ -0,0 +1,10 @@ +namespace api_cinema_challenge.DTO +{ + public class TicketGet + { + public int Id { get; set; } + public int NumSeats { get; set; } + public DateTime CreatedAt { get; set; } + public DateTime UpdatedAt { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/DTO/TicketPost.cs b/api-cinema-challenge/api-cinema-challenge/DTO/TicketPost.cs new file mode 100644 index 00000000..ae3be602 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/DTO/TicketPost.cs @@ -0,0 +1,7 @@ +namespace api_cinema_challenge.DTO +{ + public class TicketPost + { + public int NumSeats { get; set; } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Data/Seeder.cs b/api-cinema-challenge/api-cinema-challenge/Data/Seeder.cs index 0db37934..b52623d8 100644 --- a/api-cinema-challenge/api-cinema-challenge/Data/Seeder.cs +++ b/api-cinema-challenge/api-cinema-challenge/Data/Seeder.cs @@ -16,7 +16,17 @@ public class Seeder "Fight Club | 8.8 | 239 | An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into something much more.", "The Matrix | 8.7 | 236 | A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.", "Interstellar | 8.7 | 269 | A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.", - "Parasite | 8.5 | 232 | Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan." + "Parasite | 8.5 | 232 | Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.", + "The Lord of the Rings: The Fellowship of the Ring | 8.8 | 178 | A meek Hobbit sets out on a journey to destroy a powerful ring and save Middle-earth from the Dark Lord Sauron.", + "The Lord of the Rings: The Two Towers | 8.7 | 179 | The fellowship continues their fight against Sauron's forces while Frodo and Sam draw closer to Mordor.", + "The Lord of the Rings: The Return of the King | 8.9 | 201 | The final battle for Middle-earth begins as Frodo and Sam reach the heart of Mordor to destroy the One Ring.", + "Gladiator | 8.5 | 155 | A former Roman general seeks vengeance against the corrupt emperor who murdered his family and sent him into slavery.", + "The Lion King | 8.5 | 88 | Simba, a young lion prince, flees his kingdom after the murder of his father but eventually learns the true meaning of responsibility and bravery.", + "The Prestige | 8.5 | 130 | Two rival magicians engage in a bitter competition, obsessively trying to outdo each other with dangerous tricks and illusions.", + "Whiplash | 8.5 | 106 | A young drummer enrolls at a music conservatory and struggles under the extreme demands of a ruthless instructor.", + "The Departed | 8.5 | 151 | An undercover cop and a mole in the police force try to identify each other while infiltrating an Irish gang in Boston.", + "Joker | 8.4 | 122 | A failed comedian descends into madness and emerges as the infamous criminal mastermind in Gotham City.", + "Avengers: Endgame | 8.4 | 181 | The surviving members of the Avengers work together to undo the destruction caused by Thanos and restore balance to the universe." }; private List _firstnames = new List() @@ -124,7 +134,7 @@ public Guid GetNewGuid() r.NextBytes(guid); guiditerator++; - return new Guid(guid); + return Guid.NewGuid(); } public Seeder() @@ -133,58 +143,73 @@ public Seeder() Random CustomerRandom = new Random(2); Random MovieRandom = new Random(3); Random TicketRandom = new Random(4); + + int movieId = 1; + int customerId = 1; + int screeningId = 1; + int ticketId = 1; + + // Create movies foreach (var movie in movies) { string title = movie.Split("|")[0].Trim(); - _movies.Add(new Movie { - Id = GetNewGuid(), + _movies.Add(new Movie + { + Id = movieId++, Title = title, Rating = movie.Split("|")[1].Trim(), Description = movie.Split("|")[3].Trim(), RuntimeMins = int.Parse(movie.Split("|")[2].Trim()), - CreatedAt = somedate.AddDays(DayRandom.Next(0,10)), + CreatedAt = somedate.AddDays(DayRandom.Next(0, 10)), UpdatedAt = DayRandom.Next(0, 5) == 4 ? null : somedate.AddDays(-DayRandom.Next(10, 1000)) }); } + // Create customers for (int x = 1; x < 250; x++) { string name = _firstnames[CustomerRandom.Next(_firstnames.Count)] + " " + _lastnames[CustomerRandom.Next(_lastnames.Count)]; Customer customer = new Customer(); - customer.Id = GetNewGuid(); + customer.Id = customerId++; customer.Name = name; customer.Email = $"{customer.Name.Split(" ")[0]}.{customer.Name.Split(" ")[1]}@{_domain[CustomerRandom.Next(_domain.Count)]}".ToLower(); customer.Phone = $"+47{CustomerRandom.Next(10000000, 99999999)}"; + customer.CreatedAt = somedate.AddDays(-DayRandom.Next(-10, 50)); + customer.UpdatedAt = somedate.AddDays(DayRandom.Next(11, 25)); _customers.Add(customer); } - foreach( var movie in _movies) + // Screenings + foreach (var movie in _movies) { - int ranLoop = DayRandom.Next(0, 10); + int ranLoop = DayRandom.Next(0, 5); for (int i = 0; i < ranLoop; i++) { if (MovieRandom.Next(0, 5) == 5) continue; Screening screening = new Screening(); - screening.Id = GetNewGuid(); + screening.Id = screeningId++; screening.ScreenNumber = MovieRandom.Next(1, 6); - screening.Capacity = MovieRandom.Next(20, 400); + screening.Capacity = MovieRandom.Next(20, 25); screening.CreatedAt = somedate.AddDays(DayRandom.Next(0, 10)); screening.StartsAt = somedate.AddDays(DayRandom.Next(11, 25)); - screening.UpdatedAt = somedate.AddDays(DayRandom.Next(11, 25)); + screening.UpdatedAt = DayRandom.Next(0, 5) == 4 ? null : somedate.AddDays(DayRandom.Next(11, 25)); + screening.MovieId = movie.Id; _screenings.Add(screening); } } + + // Ticket for screenings foreach (var screening in _screenings) { - for (int i = 0; i < screening.Capacity; i += TicketRandom.Next(1, 10)) + for (int i = 1; i < screening.Capacity; i += TicketRandom.Next(1, 10)) { Ticket ticket = new Ticket(); - ticket.Id = GetNewGuid(); + ticket.Id = ticketId++; ticket.NumSeats = i; ticket.ScreeningId = screening.Id; ticket.CustomerId = _customers[TicketRandom.Next(_customers.Count())].Id; - ticket.CreatedAt = screening.CreatedAt.AddDays(DayRandom.Next(0,10)); - ticket.UpdatedAt = DayRandom.Next(0, 5) == 4 ? null :ticket.CreatedAt.AddMinutes(DayRandom.Next(5, 900)); + ticket.CreatedAt = screening.CreatedAt.AddDays(DayRandom.Next(0, 10)); + ticket.UpdatedAt = DayRandom.Next(0, 5) == 4 ? null : ticket.CreatedAt.AddMinutes(DayRandom.Next(5, 900)); _tickets.Add(ticket); } } diff --git a/api-cinema-challenge/api-cinema-challenge/Endpoints/CustomerAPI.cs b/api-cinema-challenge/api-cinema-challenge/Endpoints/CustomerAPI.cs index 037d8e12..c580b203 100644 --- a/api-cinema-challenge/api-cinema-challenge/Endpoints/CustomerAPI.cs +++ b/api-cinema-challenge/api-cinema-challenge/Endpoints/CustomerAPI.cs @@ -1,6 +1,87 @@ -namespace api_cinema_challenge.Endpoints + +using api_cinema_challenge.DTO; +using api_cinema_challenge.Models; +using api_cinema_challenge.Repository; +using AutoMapper; +using Microsoft.AspNetCore.Mvc; + +namespace api_cinema_challenge.Endpoints { - public class CustomerAPI + public static class CustomerAPI { + public static void ConfigureCustomerEndpoint(this WebApplication app) + { + var CustomerGroup = app.MapGroup("/customers"); + + CustomerGroup.MapGet("", GetCustomers); + CustomerGroup.MapPost("", CreateCustomer); + CustomerGroup.MapPut("/{id}", UpdateCustomer); + CustomerGroup.MapDelete("/{id}", DeleteCustomer); + + CustomerGroup.MapGet("/{customerId}/screenings/{screeningId}", GetCustomerTickets); + CustomerGroup.MapPost("/{customerId}/screenings/{screeningId}", BookTicket); + } + + [ProducesResponseType(StatusCodes.Status200OK)] + private static async Task GetCustomers(IRepository repository, IMapper mapper) + { + var customers = await repository.Get(); + List customerlist = mapper.Map>(customers); + ApiResponse> response = new ApiResponse>(customerlist); + return TypedResults.Ok(response); + } + + [ProducesResponseType(StatusCodes.Status201Created)] + [ProducesResponseType(StatusCodes.Status404NotFound)] + private static async Task CreateCustomer(IRepository repository, IMapper mapper, CustomerPost model) + { + if (model == null) TypedResults.NotFound(new ApiResponse("Invalid information given.")); + Customer customer = await repository.Insert(mapper.Map(model)); + return TypedResults.Ok(new ApiResponse(mapper.Map(customer))); + } + + [ProducesResponseType(StatusCodes.Status201Created)] + [ProducesResponseType(StatusCodes.Status404NotFound)] + private static async Task UpdateCustomer(IRepository repository, IMapper mapper, int id, CustomerPut model) + { + if (model == null) return TypedResults.NotFound(new ApiResponse("Invalid information given.")); + Customer? customer = await repository.GetById(id); + if (customer == null) return TypedResults.NotFound(new ApiResponse("No customer with Id")); + + if (!string.IsNullOrWhiteSpace(model.Name)) customer.Name = model.Name; + if (!string.IsNullOrWhiteSpace(model.Email)) customer.Email = model.Email; + if (!string.IsNullOrWhiteSpace(model.Phone)) customer.Phone = model.Phone; + + Customer updatedCustomer = await repository.Update(customer); + CustomerGet customerDTO = mapper.Map(updatedCustomer); + return TypedResults.Created($"/customers/{customerDTO.Id}", new ApiResponse(customerDTO)); + } + + [ProducesResponseType(StatusCodes.Status200OK)] + [ProducesResponseType(StatusCodes.Status404NotFound)] + private static async Task DeleteCustomer(IRepository repository, IMapper mapper, int id) + { + var result = await repository.Delete(id); + return result != null ? TypedResults.Ok(new ApiResponse(mapper.Map(result))) : TypedResults.NotFound("Not valid ID"); + } + + [ProducesResponseType(StatusCodes.Status200OK)] + private static async Task GetCustomerTickets(IRepository repository, IMapper mapper, int customerId, int screeningId) + { + var tickets = await repository.Get(t => t.CustomerId == customerId && t.ScreeningId == screeningId); + return TypedResults.Ok(new ApiResponse>(mapper.Map>(tickets))); + } + + [ProducesResponseType(StatusCodes.Status200OK)] + [ProducesResponseType(StatusCodes.Status404NotFound)] + private static async Task BookTicket(IRepository repository, IMapper mapper, int customerId, int screeningId, TicketPost model) + { + if (model == null || model.NumSeats <= 0) TypedResults.NotFound(new ApiResponse("Need to give a number bigger than 0.")); + Ticket ticket = mapper.Map(model); + ticket.ScreeningId = screeningId; + ticket.CustomerId = customerId; + ticket = await repository.Insert(ticket); + return TypedResults.Ok(new ApiResponse(mapper.Map(ticket))); + } } } diff --git a/api-cinema-challenge/api-cinema-challenge/Endpoints/MovieAPI.cs b/api-cinema-challenge/api-cinema-challenge/Endpoints/MovieAPI.cs new file mode 100644 index 00000000..c81edd10 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Endpoints/MovieAPI.cs @@ -0,0 +1,103 @@ +using api_cinema_challenge.DTO; +using api_cinema_challenge.Models; +using api_cinema_challenge.Repository; +using AutoMapper; +using Microsoft.AspNetCore.Mvc; + +namespace api_cinema_challenge.Endpoints +{ + public static class MovieAPI + { + public static void ConfigureMovieEndpoint(this WebApplication app) + { + var MovieGroup = app.MapGroup("/movies"); + + MovieGroup.MapGet("", GetMovies); + MovieGroup.MapPost("", Createmovie); + MovieGroup.MapPut("/{id}", UpdateMovie); + MovieGroup.MapDelete("/{id}", DeleteMovie); + + MovieGroup.MapGet("/{movieId}/screenings", GetScreenings); + MovieGroup.MapPost("/{movieId}/screenings", CreateScreening); + } + + [ProducesResponseType(StatusCodes.Status200OK)] + private static async Task GetMovies(IRepository repository, IMapper mapper) + { + var movies = await repository.Get(); + List movielist = mapper.Map>(movies); + ApiResponse> response = new ApiResponse>(movielist); + return TypedResults.Ok(response); + } + + [ProducesResponseType(StatusCodes.Status201Created)] + [ProducesResponseType(StatusCodes.Status404NotFound)] + private static async Task Createmovie(IRepository repository, IRepository screenrep, IMapper mapper, MoviePost model) + { + if (model == null) TypedResults.NotFound(new ApiResponse("Invalid information given.")); + // insert movie + Movie movie = mapper.Map(model); + ICollection screenings = movie.Screenings; + movie = await repository.Insert(movie); + movie.Screenings.Clear(); + + // insert screenings + foreach(var screeningPost in model.Screenings) { + Screening screening = mapper.Map(screeningPost); + screening.MovieId = movie.Id; + await screenrep.Insert(screening); + // Dont need to add the screenings, cuz somehow it tracks it? + //movie.Screenings.Add(screening); + } + + MovieGetScreenings movieScreeningsDTO = mapper.Map(movie); + + return TypedResults.Ok(movieScreeningsDTO); + } + + [ProducesResponseType(StatusCodes.Status201Created)] + [ProducesResponseType(StatusCodes.Status404NotFound)] + private static async Task UpdateMovie(IRepository repository, IMapper mapper, int id, MoviePut model) + { + if (model == null) return TypedResults.NotFound(new ApiResponse("Invalid information given.")); + Movie? movie = await repository.GetById(id); + if (movie == null) return TypedResults.NotFound(new ApiResponse("No customer with Id")); + + if (!string.IsNullOrWhiteSpace(model.Title)) movie.Title = model.Title; + if (!string.IsNullOrWhiteSpace(model.Rating)) movie.Rating = model.Rating; + if (!string.IsNullOrWhiteSpace(model.Description)) movie.Description = model.Description; + if (model.RuntimeMins > 0) movie.RuntimeMins = model.RuntimeMins; + + + Movie updatedMovie = await repository.Update(movie); + MovieGet movieDTO = mapper.Map(updatedMovie); + return TypedResults.Created($"/movies/{movieDTO.Id}", new ApiResponse(movieDTO)); + } + + [ProducesResponseType(StatusCodes.Status200OK)] + [ProducesResponseType(StatusCodes.Status404NotFound)] + private static async Task DeleteMovie(IRepository repository, IMapper mapper, int id) + { + var result = await repository.Delete(id); + return result != null ? TypedResults.Ok(new ApiResponse(mapper.Map(result))) : TypedResults.NotFound("Not valid ID"); + } + + [ProducesResponseType(StatusCodes.Status200OK)] + private static async Task GetScreenings(IRepository repository, IMapper mapper, int MovieId) + { + var screening = await repository.Get(t => t.MovieId == MovieId); + return TypedResults.Ok(new ApiResponse>(mapper.Map>(screening))); + } + + [ProducesResponseType(StatusCodes.Status200OK)] + [ProducesResponseType(StatusCodes.Status404NotFound)] + private static async Task CreateScreening(IRepository repository, IMapper mapper, int MovieId, ScreeningPost model) + { + if (model == null || model.Capacity <= 0 || model.ScreenNumber == 0) TypedResults.NotFound(new ApiResponse("Need to give a number bigger than 0.")); + Screening screening = mapper.Map(model); + screening.MovieId = MovieId; + screening = await repository.Insert(screening); + return TypedResults.Ok(new ApiResponse(mapper.Map(screening))); + } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082616_Firsto.Designer.cs b/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082616_Firsto.Designer.cs new file mode 100644 index 00000000..19a8f525 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082616_Firsto.Designer.cs @@ -0,0 +1,4835 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using api_cinema_challenge.Data; + +#nullable disable + +namespace api_cinema_challenge.Migrations +{ + [DbContext(typeof(CinemaContext))] + [Migration("20250828082616_Firsto")] + partial class Firsto + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("api_cinema_challenge.Models.Customer", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("Email") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Phone") + .IsRequired() + .HasColumnType("text"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("customers"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.einstein@nasa.org.us", + Name = "Serena Einstein", + Phone = "+4798654233", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winslet@aftenposten.no", + Name = "Elvis Winslet", + Phone = "+4750099200", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.hepburn@dagbladet.no", + Name = "Oprah Hepburn", + Phone = "+4712586923", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.swift@apple.com", + Name = "Audrey Swift", + Phone = "+4735146790", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.jagger@vg.no", + Name = "Cristiano Jagger", + Phone = "+4718010140", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.windsor@microsoft.com", + Name = "Donald Windsor", + Phone = "+4775818525", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.gates@tokyo.ac.jp", + Name = "Rafael Gates", + Phone = "+4793415257", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.messi@ntnu.no", + Name = "Donald Messi", + Phone = "+4798212673", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.trump@microsoft.com", + Name = "Elvis Trump", + Phone = "+4786467565", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.freeman@sydney.edu.au", + Name = "Bill Freeman", + Phone = "+4718375518", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.winslet@gov.nl", + Name = "Audrey Winslet", + Phone = "+4754980153", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.jackson@bbc.co.uk", + Name = "Timian Jackson", + Phone = "+4753968651", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.dicaprio@mit.edu", + Name = "Mick DiCaprio", + Phone = "+4765811496", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.nadal@ox.ac.uk", + Name = "Donald Nadal", + Phone = "+4748913184", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.monroe@something.com", + Name = "Donald Monroe", + Phone = "+4736671902", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@microsoft.com", + Name = "Bill Federer", + Phone = "+4757983861", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.depp@ntnu.no", + Name = "Donald Depp", + Phone = "+4797198853", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.swift@ox.ac.uk", + Name = "Barack Swift", + Phone = "+4796317752", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.ronaldo@google.com", + Name = "Messi Ronaldo", + Phone = "+4782992590", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.gates@dagbladet.no", + Name = "Donald Gates", + Phone = "+4740591714", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 21, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.winfrey@harvard.edu", + Name = "Serena Winfrey", + Phone = "+4765222914", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.winslet@uio.no", + Name = "Audrey Winslet", + Phone = "+4728539812", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.nadal@dagbladet.no", + Name = "Charles Nadal", + Phone = "+4732717007", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 24, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.einstein@wikipedia.org", + Name = "Bill Einstein", + Phone = "+4724869515", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jolie@wikipedia.org", + Name = "Leonardo Jolie", + Phone = "+4725870905", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.trump@amazon.com", + Name = "Taylor Trump", + Phone = "+4782878137", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 27, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.messi@theworld.ca", + Name = "Rafael Messi", + Phone = "+4749157626", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.depp@apple.com", + Name = "Roger Depp", + Phone = "+4731970591", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.freeman@reddit.com", + Name = "Bill Freeman", + Phone = "+4753931142", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.freeman@un.org", + Name = "Jimi Freeman", + Phone = "+4780233684", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + CreatedAt = new DateTime(2020, 11, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.jolie@reddit.com", + Name = "Rafael Jolie", + Phone = "+4733425352", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.windsor@amazon.com", + Name = "Serena Windsor", + Phone = "+4724436799", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.federer@uio.no", + Name = "Barack Federer", + Phone = "+4741083924", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.williams@vg.no", + Name = "Charles Williams", + Phone = "+4777168827", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.depp@vg.no", + Name = "Roger Depp", + Phone = "+4742944612", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.dicaprio@apple.com", + Name = "Oprah DiCaprio", + Phone = "+4769307146", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.swift@harvard.edu", + Name = "Lionel Swift", + Phone = "+4791515051", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + CreatedAt = new DateTime(2020, 10, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@uit.no", + Name = "Rafael Husveg", + Phone = "+4727333786", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.ronaldo@amazon.com", + Name = "Oprah Ronaldo", + Phone = "+4791665621", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.trump@google.com", + Name = "Messi Trump", + Phone = "+4759808962", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.nadal@gov.nl", + Name = "Kate Nadal", + Phone = "+4796731002", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.hepburn@dn.no", + Name = "Rafael Hepburn", + Phone = "+4716437790", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.freeman@mit.edu", + Name = "Audrey Freeman", + Phone = "+4756423247", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.obama@stackoverflow.com", + Name = "Audrey Obama", + Phone = "+4746604824", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.federer@vg.no", + Name = "Kate Federer", + Phone = "+4730321514", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 46, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.einstein@gov.ru", + Name = "Serena Einstein", + Phone = "+4732187286", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 47, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.jolie@something.com", + Name = "Audrey Jolie", + Phone = "+4780416108", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 48, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.depp@gov.gr", + Name = "Jimi Depp", + Phone = "+4780752954", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 49, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.winfrey@regjeringen.no", + Name = "Cristiano Winfrey", + Phone = "+4739241527", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 50, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.einstein@nrk.no", + Name = "Oprah Einstein", + Phone = "+4758624624", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 51, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.swift@uit.no", + Name = "Cristiano Swift", + Phone = "+4721969718", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 52, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.middleton@gov.us", + Name = "Mick Middleton", + Phone = "+4721577109", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 53, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.nadal@stackoverflow.com", + Name = "Donald Nadal", + Phone = "+4769091059", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 54, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@aftenposten.no", + Name = "Kate Gates", + Phone = "+4798264201", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 55, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.clinton@nmbu.no", + Name = "Taylor Clinton", + Phone = "+4728496247", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 56, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@dagbladet.no", + Name = "Leonardo Trump", + Phone = "+4731078806", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 57, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.federer@dagbladet.no", + Name = "Messi Federer", + Phone = "+4786108458", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 58, + CreatedAt = new DateTime(2020, 11, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hendrix@nasa.org.us", + Name = "Elvis Hendrix", + Phone = "+4797020160", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 59, + CreatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winfrey@reddit.com", + Name = "Elvis Winfrey", + Phone = "+4731283436", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 60, + CreatedAt = new DateTime(2020, 11, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.obama@ntnu.no", + Name = "Messi Obama", + Phone = "+4768500433", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 61, + CreatedAt = new DateTime(2020, 11, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.clinton@sydney.edu.au", + Name = "Messi Clinton", + Phone = "+4746386926", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 62, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.jackson@wikipedia.org", + Name = "Jimi Jackson", + Phone = "+4790575139", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 63, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hepburn@sydney.edu.au", + Name = "Kate Hepburn", + Phone = "+4732025597", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 64, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jackson@mit.edu", + Name = "Charles Jackson", + Phone = "+4769183730", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 65, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.ronaldo@ox.ac.uk", + Name = "Cristiano Ronaldo", + Phone = "+4750731503", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 66, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.windsor@regjeringen.no", + Name = "Lionel Windsor", + Phone = "+4788091667", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 67, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.williams@stackoverflow.com", + Name = "Cristiano Williams", + Phone = "+4726432565", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 68, + CreatedAt = new DateTime(2020, 11, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.jackson@who.int", + Name = "Mick Jackson", + Phone = "+4754834908", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 69, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.winslet@sydney.edu.au", + Name = "Donald Winslet", + Phone = "+4794787088", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 70, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.middleton@regjeringen.no", + Name = "Kate Middleton", + Phone = "+4796871563", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 71, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.nadal@un.org", + Name = "Charles Nadal", + Phone = "+4721218762", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 72, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.husveg@reddit.com", + Name = "Messi Husveg", + Phone = "+4759628976", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 73, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.federer@un.org", + Name = "Messi Federer", + Phone = "+4790749534", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 74, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.dicaprio@theworld.ca", + Name = "Messi DiCaprio", + Phone = "+4726065401", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 75, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@sydney.edu.au", + Name = "Timian Gates", + Phone = "+4771238544", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 76, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.jagger@ox.ac.uk", + Name = "Audrey Jagger", + Phone = "+4782116146", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 77, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.winfrey@gov.us", + Name = "Lionel Winfrey", + Phone = "+4722193419", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 78, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.messi@amazon.com", + Name = "Rafael Messi", + Phone = "+4743134874", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 79, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.ronaldo@google.com", + Name = "Bill Ronaldo", + Phone = "+4770005289", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 80, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.federer@microsoft.com", + Name = "Rafael Federer", + Phone = "+4781315514", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 81, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.clinton@mit.edu", + Name = "Donald Clinton", + Phone = "+4749543434", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 82, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jackson@nmbu.no", + Name = "Donald Jackson", + Phone = "+4761118531", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 83, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.swift@nmbu.no", + Name = "Oprah Swift", + Phone = "+4757247965", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 84, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.winslet@nmbu.no", + Name = "Bill Winslet", + Phone = "+4725159829", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 85, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.messi@harvard.edu", + Name = "Mick Messi", + Phone = "+4740967675", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 86, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.einstein@sydney.edu.au", + Name = "Cristiano Einstein", + Phone = "+4786923921", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 87, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.obama@gov.nl", + Name = "Lionel Obama", + Phone = "+4791209991", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 88, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.einstein@microsoft.com", + Name = "Kate Einstein", + Phone = "+4718948809", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 89, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.nadal@mit.edu", + Name = "Kate Nadal", + Phone = "+4711566291", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 90, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.obama@vg.no", + Name = "Taylor Obama", + Phone = "+4710308065", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 91, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.ronaldo@ntnu.no", + Name = "Oprah Ronaldo", + Phone = "+4741344498", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 92, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.depp@sydney.edu.au", + Name = "Cristiano Depp", + Phone = "+4742656755", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 93, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@apple.com", + Name = "Bill Federer", + Phone = "+4725848809", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 94, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.clinton@google.com", + Name = "Mick Clinton", + Phone = "+4769471381", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 95, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.depp@uit.no", + Name = "Mick Depp", + Phone = "+4794558038", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 96, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.trump@something.com", + Name = "Mick Trump", + Phone = "+4782164706", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 97, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.federer@google.com", + Name = "Barack Federer", + Phone = "+4781495514", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 98, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.husveg@stackoverflow.com", + Name = "Bill Husveg", + Phone = "+4724025822", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 99, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jackson@something.com", + Name = "Leonardo Jackson", + Phone = "+4720007993", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 100, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.windsor@tesla.com", + Name = "Kate Windsor", + Phone = "+4779990851", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 101, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.federer@gov.gr", + Name = "Charles Federer", + Phone = "+4763148363", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 102, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.obama@aftenposten.no", + Name = "Donald Obama", + Phone = "+4755149875", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 103, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.clinton@vg.no", + Name = "Roger Clinton", + Phone = "+4784083446", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 104, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.depp@sydney.edu.au", + Name = "Jimi Depp", + Phone = "+4725450309", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 105, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.presley@nasa.org.us", + Name = "Messi Presley", + Phone = "+4786155121", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 106, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.nadal@sydney.edu.au", + Name = "Cristiano Nadal", + Phone = "+4777987067", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 107, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@gov.gr", + Name = "Mick Hendrix", + Phone = "+4776568653", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 108, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@gov.us", + Name = "Rafael Husveg", + Phone = "+4797198747", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 109, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.presley@un.org", + Name = "Taylor Presley", + Phone = "+4749341027", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 110, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.swift@nrk.no", + Name = "Roger Swift", + Phone = "+4713816113", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 111, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.swift@nmbu.no", + Name = "Donald Swift", + Phone = "+4772873967", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 112, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.freeman@uio.no", + Name = "Oprah Freeman", + Phone = "+4723625072", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 113, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@ox.ac.uk", + Name = "Rafael Husveg", + Phone = "+4742570606", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 114, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.winslet@google.com", + Name = "Barack Winslet", + Phone = "+4760419448", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 115, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.monroe@gov.ru", + Name = "Barack Monroe", + Phone = "+4786987482", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 116, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@mit.edu", + Name = "Leonardo Trump", + Phone = "+4790022318", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 117, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.freeman@nasa.org.us", + Name = "Serena Freeman", + Phone = "+4725135140", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 118, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.jagger@microsoft.com", + Name = "Mick Jagger", + Phone = "+4798688366", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 119, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.obama@dagbladet.no", + Name = "Kate Obama", + Phone = "+4729523943", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 120, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.clinton@stackoverflow.com", + Name = "Leonardo Clinton", + Phone = "+4761335158", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 121, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.presley@uit.no", + Name = "Mick Presley", + Phone = "+4793911593", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 122, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.gates@dagbladet.no", + Name = "Mick Gates", + Phone = "+4742098309", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 123, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.husveg@gov.nl", + Name = "Donald Husveg", + Phone = "+4744402784", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 124, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.nadal@tesla.com", + Name = "Oprah Nadal", + Phone = "+4711821095", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 125, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@ntnu.no", + Name = "Leonardo Trump", + Phone = "+4753659393", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 126, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.jolie@dn.no", + Name = "Lionel Jolie", + Phone = "+4766011799", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 127, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.ronaldo@regjeringen.no", + Name = "Taylor Ronaldo", + Phone = "+4716034399", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 128, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.gates@mit.edu", + Name = "Messi Gates", + Phone = "+4726399068", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 129, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jolie@stackoverflow.com", + Name = "Leonardo Jolie", + Phone = "+4785362268", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 130, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.jolie@stackoverflow.com", + Name = "Barack Jolie", + Phone = "+4796329523", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 131, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@something.com", + Name = "Timian Gates", + Phone = "+4743227372", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 132, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.husveg@nrk.no", + Name = "Timian Husveg", + Phone = "+4753483733", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 133, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.freeman@amazon.com", + Name = "Timian Freeman", + Phone = "+4787189460", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 134, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.trump@bbc.co.uk", + Name = "Donald Trump", + Phone = "+4764181429", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 135, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@amazon.com", + Name = "Oprah Jagger", + Phone = "+4775511912", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 136, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.jolie@dn.no", + Name = "Roger Jolie", + Phone = "+4733478038", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 137, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.trump@who.int", + Name = "Jimi Trump", + Phone = "+4757111945", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 138, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.winslet@dn.no", + Name = "Kate Winslet", + Phone = "+4729021342", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 139, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.husveg@stackoverflow.com", + Name = "Messi Husveg", + Phone = "+4776867537", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 140, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.dicaprio@mit.edu", + Name = "Taylor DiCaprio", + Phone = "+4769984935", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 141, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.swift@theworld.ca", + Name = "Rafael Swift", + Phone = "+4779376969", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 142, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.depp@something.com", + Name = "Messi Depp", + Phone = "+4789381758", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 143, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.husveg@ox.ac.uk", + Name = "Cristiano Husveg", + Phone = "+4795356763", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 144, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@tesla.com", + Name = "Kate Gates", + Phone = "+4731023984", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 145, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@theworld.ca", + Name = "Timian Gates", + Phone = "+4792868122", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 146, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hendrix@tesla.com", + Name = "Kate Hendrix", + Phone = "+4773179510", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 147, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.presley@microsoft.com", + Name = "Leonardo Presley", + Phone = "+4721249323", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 148, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.jagger@regjeringen.no", + Name = "Messi Jagger", + Phone = "+4777383815", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 149, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.ronaldo@uit.no", + Name = "Taylor Ronaldo", + Phone = "+4739168939", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 150, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.trump@nrk.no", + Name = "Taylor Trump", + Phone = "+4757236844", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 151, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.jackson@aftenposten.no", + Name = "Timian Jackson", + Phone = "+4747442491", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 152, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@dn.no", + Name = "Bill Federer", + Phone = "+4773741695", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 153, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.winslet@nrk.no", + Name = "Roger Winslet", + Phone = "+4780917391", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 154, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@nasa.org.us", + Name = "Charles Jolie", + Phone = "+4768143256", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 155, + CreatedAt = new DateTime(2020, 11, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.middleton@dn.no", + Name = "Kate Middleton", + Phone = "+4746026165", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 156, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.clinton@apple.com", + Name = "Charles Clinton", + Phone = "+4749444494", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 157, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.federer@microsoft.com", + Name = "Timian Federer", + Phone = "+4775070583", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 158, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.depp@ox.ac.uk", + Name = "Timian Depp", + Phone = "+4792623051", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 159, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jackson@nmbu.no", + Name = "Donald Jackson", + Phone = "+4792943294", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 160, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@bbc.co.uk", + Name = "Charles Jolie", + Phone = "+4713572468", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 161, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.ronaldo@amazon.com", + Name = "Jimi Ronaldo", + Phone = "+4729363061", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 162, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.winfrey@microsoft.com", + Name = "Messi Winfrey", + Phone = "+4791858630", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 163, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hendrix@nmbu.no", + Name = "Kate Hendrix", + Phone = "+4734057901", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 164, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.middleton@theworld.ca", + Name = "Oprah Middleton", + Phone = "+4799913874", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 165, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.middleton@who.int", + Name = "Oprah Middleton", + Phone = "+4783907296", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 166, + CreatedAt = new DateTime(2020, 10, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.presley@nrk.no", + Name = "Messi Presley", + Phone = "+4712410015", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 167, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.gates@vg.no", + Name = "Cristiano Gates", + Phone = "+4787999809", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 168, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.jagger@gov.nl", + Name = "Serena Jagger", + Phone = "+4769339223", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 169, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@tesla.com", + Name = "Kate Gates", + Phone = "+4783633084", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 170, + CreatedAt = new DateTime(2020, 10, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.obama@ntnu.no", + Name = "Bill Obama", + Phone = "+4778618509", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 171, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.monroe@gov.nl", + Name = "Messi Monroe", + Phone = "+4777149234", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 172, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.windsor@sydney.edu.au", + Name = "Rafael Windsor", + Phone = "+4774253974", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 173, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.husveg@vg.no", + Name = "Kate Husveg", + Phone = "+4712262036", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 174, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.hendrix@un.org", + Name = "Jimi Hendrix", + Phone = "+4723594804", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 175, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.jagger@reddit.com", + Name = "Rafael Jagger", + Phone = "+4769734141", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 176, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.dicaprio@nasa.org.us", + Name = "Kate DiCaprio", + Phone = "+4730476680", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 177, + CreatedAt = new DateTime(2020, 11, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.winslet@ntnu.no", + Name = "Timian Winslet", + Phone = "+4746378599", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 178, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@amazon.com", + Name = "Oprah Jagger", + Phone = "+4714577884", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 179, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@amazon.com", + Name = "Charles Jolie", + Phone = "+4721243178", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 180, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.hepburn@nasa.org.us", + Name = "Rafael Hepburn", + Phone = "+4744499745", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 181, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hepburn@openai.com", + Name = "Elvis Hepburn", + Phone = "+4783117733", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 182, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.hendrix@openai.com", + Name = "Messi Hendrix", + Phone = "+4723747134", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 183, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.clinton@nmbu.no", + Name = "Mick Clinton", + Phone = "+4747052865", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 184, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.jagger@gov.ru", + Name = "Taylor Jagger", + Phone = "+4714589778", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 185, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.hepburn@dagbladet.no", + Name = "Jimi Hepburn", + Phone = "+4760889722", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 186, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.winslet@un.org", + Name = "Charles Winslet", + Phone = "+4727804466", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 187, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.messi@harvard.edu", + Name = "Taylor Messi", + Phone = "+4760033392", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 188, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.middleton@gov.ru", + Name = "Leonardo Middleton", + Phone = "+4788377888", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 189, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.obama@reddit.com", + Name = "Donald Obama", + Phone = "+4752993643", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 190, + CreatedAt = new DateTime(2020, 11, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.windsor@sydney.edu.au", + Name = "Donald Windsor", + Phone = "+4778018462", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 191, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.freeman@theworld.ca", + Name = "Rafael Freeman", + Phone = "+4731492399", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 192, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.nadal@openai.com", + Name = "Mick Nadal", + Phone = "+4726179198", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 193, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jagger@dn.no", + Name = "Charles Jagger", + Phone = "+4786749070", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 194, + CreatedAt = new DateTime(2020, 11, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.williams@regjeringen.no", + Name = "Oprah Williams", + Phone = "+4785560056", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 195, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.hendrix@gov.us", + Name = "Messi Hendrix", + Phone = "+4788004459", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 196, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.federer@gov.nl", + Name = "Taylor Federer", + Phone = "+4795714823", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 197, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.trump@amazon.com", + Name = "Cristiano Trump", + Phone = "+4756871101", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 198, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.depp@regjeringen.no", + Name = "Cristiano Depp", + Phone = "+4794243831", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 199, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hepburn@sydney.edu.au", + Name = "Mick Hepburn", + Phone = "+4768379350", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 200, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@uit.no", + Name = "Oprah Jagger", + Phone = "+4774908337", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 201, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.einstein@tesla.com", + Name = "Jimi Einstein", + Phone = "+4768730068", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 202, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.monroe@mit.edu", + Name = "Messi Monroe", + Phone = "+4754049485", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 203, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.messi@nmbu.no", + Name = "Barack Messi", + Phone = "+4787360423", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 204, + CreatedAt = new DateTime(2020, 10, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.gates@something.com", + Name = "Barack Gates", + Phone = "+4713260319", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 205, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.obama@stackoverflow.com", + Name = "Messi Obama", + Phone = "+4732311046", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 206, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.nadal@wikipedia.org", + Name = "Lionel Nadal", + Phone = "+4764701764", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 207, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.nadal@stackoverflow.com", + Name = "Jimi Nadal", + Phone = "+4728919645", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 208, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.windsor@mit.edu", + Name = "Leonardo Windsor", + Phone = "+4733291487", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 209, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.dicaprio@ox.ac.uk", + Name = "Mick DiCaprio", + Phone = "+4731719366", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 210, + CreatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.williams@wikipedia.org", + Name = "Cristiano Williams", + Phone = "+4734668408", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 211, + CreatedAt = new DateTime(2020, 11, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.gates@apple.com", + Name = "Charles Gates", + Phone = "+4715249439", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 212, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.obama@dagbladet.no", + Name = "Roger Obama", + Phone = "+4754594896", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 213, + CreatedAt = new DateTime(2020, 10, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.ronaldo@tesla.com", + Name = "Leonardo Ronaldo", + Phone = "+4717295123", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 214, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.ronaldo@tesla.com", + Name = "Cristiano Ronaldo", + Phone = "+4743874215", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 215, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.swift@openai.com", + Name = "Timian Swift", + Phone = "+4763969684", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 216, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.monroe@harvard.edu", + Name = "Rafael Monroe", + Phone = "+4784375644", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 217, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jolie@stackoverflow.com", + Name = "Donald Jolie", + Phone = "+4772151502", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 218, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.federer@microsoft.com", + Name = "Oprah Federer", + Phone = "+4791939721", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 219, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.jagger@aftenposten.no", + Name = "Bill Jagger", + Phone = "+4778911660", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 220, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.middleton@dagbladet.no", + Name = "Messi Middleton", + Phone = "+4722464563", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 221, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hepburn@amazon.com", + Name = "Elvis Hepburn", + Phone = "+4735338366", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 222, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.jackson@stackoverflow.com", + Name = "Barack Jackson", + Phone = "+4773026146", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 223, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@gov.ru", + Name = "Mick Hendrix", + Phone = "+4725615535", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 224, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.gates@apple.com", + Name = "Oprah Gates", + Phone = "+4799942352", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 225, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.jackson@regjeringen.no", + Name = "Jimi Jackson", + Phone = "+4721734511", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 226, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.presley@gov.ru", + Name = "Lionel Presley", + Phone = "+4712334915", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 227, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@openai.com", + Name = "Mick Hendrix", + Phone = "+4750872119", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 228, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.middleton@uit.no", + Name = "Roger Middleton", + Phone = "+4762484064", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 229, + CreatedAt = new DateTime(2020, 11, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.jagger@who.int", + Name = "Serena Jagger", + Phone = "+4787783850", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 230, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winslet@mit.edu", + Name = "Elvis Winslet", + Phone = "+4756369336", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 231, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.gates@apple.com", + Name = "Barack Gates", + Phone = "+4799336168", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 232, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.winfrey@sydney.edu.au", + Name = "Lionel Winfrey", + Phone = "+4787214840", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 233, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.gates@reddit.com", + Name = "Rafael Gates", + Phone = "+4797465413", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 234, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.ronaldo@stackoverflow.com", + Name = "Kate Ronaldo", + Phone = "+4713662516", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 235, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.winslet@nmbu.no", + Name = "Serena Winslet", + Phone = "+4796131717", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 236, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.presley@uio.no", + Name = "Barack Presley", + Phone = "+4797258217", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 237, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.jolie@openai.com", + Name = "Kate Jolie", + Phone = "+4796395559", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 238, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.swift@uit.no", + Name = "Kate Swift", + Phone = "+4798271334", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 239, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.dicaprio@nmbu.no", + Name = "Leonardo DiCaprio", + Phone = "+4778889329", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 240, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.winslet@wikipedia.org", + Name = "Cristiano Winslet", + Phone = "+4724377752", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 241, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.swift@harvard.edu", + Name = "Messi Swift", + Phone = "+4799525339", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 242, + CreatedAt = new DateTime(2020, 10, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.nadal@gov.us", + Name = "Rafael Nadal", + Phone = "+4721403869", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 243, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.monroe@something.com", + Name = "Cristiano Monroe", + Phone = "+4785649771", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 244, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.messi@apple.com", + Name = "Mick Messi", + Phone = "+4716903521", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 245, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.einstein@mit.edu", + Name = "Leonardo Einstein", + Phone = "+4790859687", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 246, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.freeman@un.org", + Name = "Cristiano Freeman", + Phone = "+4743791572", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 247, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.swift@theworld.ca", + Name = "Leonardo Swift", + Phone = "+4790624988", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 248, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.depp@amazon.com", + Name = "Bill Depp", + Phone = "+4753167607", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 249, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.depp@wikipedia.org", + Name = "Rafael Depp", + Phone = "+4766839558", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Movie", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("Rating") + .IsRequired() + .HasColumnType("text"); + + b.Property("RuntimeMins") + .HasColumnType("integer"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("movies"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", + Rating = "9.3", + RuntimeMins = 142, + Title = "The Shawshank Redemption", + UpdatedAt = new DateTime(2019, 8, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son.", + Rating = "9.2", + RuntimeMins = 175, + Title = "The Godfather", + UpdatedAt = new DateTime(2019, 9, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "When the menace known as the Joker wreaks havoc and chaos on Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.", + Rating = "9.1", + RuntimeMins = 252, + Title = "The Dark Knight" + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The lives of two mob hitmen, a boxer, a gangster's wife, and a pair of diner bandits intertwine in four tales of violence and redemption.", + Rating = "8.8", + RuntimeMins = 254, + Title = "Pulp Fiction", + UpdatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The presidencies of Kennedy and Johnson, the Vietnam War, and other history unfold through the perspective of an Alabama man with an IQ of 75.", + Rating = "8.8", + RuntimeMins = 242, + Title = "Forrest Gump", + UpdatedAt = new DateTime(2018, 3, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A thief who steals corporate secrets through dream-sharing technology is given the inverse task of planting an idea into the mind of a CEO.", + Rating = "8.8", + RuntimeMins = 248, + Title = "Inception", + UpdatedAt = new DateTime(2020, 2, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into something much more.", + Rating = "8.8", + RuntimeMins = 239, + Title = "Fight Club", + UpdatedAt = new DateTime(2019, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.", + Rating = "8.7", + RuntimeMins = 236, + Title = "The Matrix", + UpdatedAt = new DateTime(2020, 6, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.", + Rating = "8.7", + RuntimeMins = 269, + Title = "Interstellar", + UpdatedAt = new DateTime(2020, 6, 11, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.", + Rating = "8.5", + RuntimeMins = 232, + Title = "Parasite", + UpdatedAt = new DateTime(2018, 9, 3, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A meek Hobbit sets out on a journey to destroy a powerful ring and save Middle-earth from the Dark Lord Sauron.", + Rating = "8.8", + RuntimeMins = 178, + Title = "The Lord of the Rings: The Fellowship of the Ring", + UpdatedAt = new DateTime(2018, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The fellowship continues their fight against Sauron's forces while Frodo and Sam draw closer to Mordor.", + Rating = "8.7", + RuntimeMins = 179, + Title = "The Lord of the Rings: The Two Towers", + UpdatedAt = new DateTime(2018, 3, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The final battle for Middle-earth begins as Frodo and Sam reach the heart of Mordor to destroy the One Ring.", + Rating = "8.9", + RuntimeMins = 201, + Title = "The Lord of the Rings: The Return of the King" + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A former Roman general seeks vengeance against the corrupt emperor who murdered his family and sent him into slavery.", + Rating = "8.5", + RuntimeMins = 155, + Title = "Gladiator", + UpdatedAt = new DateTime(2019, 6, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Simba, a young lion prince, flees his kingdom after the murder of his father but eventually learns the true meaning of responsibility and bravery.", + Rating = "8.5", + RuntimeMins = 88, + Title = "The Lion King" + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Two rival magicians engage in a bitter competition, obsessively trying to outdo each other with dangerous tricks and illusions.", + Rating = "8.5", + RuntimeMins = 130, + Title = "The Prestige", + UpdatedAt = new DateTime(2019, 9, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A young drummer enrolls at a music conservatory and struggles under the extreme demands of a ruthless instructor.", + Rating = "8.5", + RuntimeMins = 106, + Title = "Whiplash", + UpdatedAt = new DateTime(2019, 8, 15, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "An undercover cop and a mole in the police force try to identify each other while infiltrating an Irish gang in Boston.", + Rating = "8.5", + RuntimeMins = 151, + Title = "The Departed", + UpdatedAt = new DateTime(2019, 6, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A failed comedian descends into madness and emerges as the infamous criminal mastermind in Gotham City.", + Rating = "8.4", + RuntimeMins = 122, + Title = "Joker", + UpdatedAt = new DateTime(2019, 1, 11, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The surviving members of the Avengers work together to undo the destruction caused by Thanos and restore balance to the universe.", + Rating = "8.4", + RuntimeMins = 181, + Title = "Avengers: Endgame", + UpdatedAt = new DateTime(2018, 4, 30, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Screening", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Capacity") + .HasColumnType("integer"); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("MovieId") + .HasColumnType("integer"); + + b.Property("ScreenNumber") + .HasColumnType("integer"); + + b.Property("StartsAt") + .HasColumnType("timestamp with time zone"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("screenings"); + + b.HasData( + new + { + Id = 1, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 14, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 21, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 24, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 27, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 0, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Ticket", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("CustomerId") + .HasColumnType("integer"); + + b.Property("NumSeats") + .HasColumnType("integer"); + + b.Property("ScreeningId") + .HasColumnType("integer"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("tickets"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 204, + NumSeats = 1, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 12, 7, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 10, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 10, 11, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 14, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 10, 12, 9, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 174, + NumSeats = 15, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 8, 1, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 118, + NumSeats = 20, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 12, 10, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 60, + NumSeats = 1, + ScreeningId = 2, + UpdatedAt = new DateTime(2020, 12, 14, 9, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 96, + NumSeats = 7, + ScreeningId = 2, + UpdatedAt = new DateTime(2020, 12, 11, 12, 12, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 195, + NumSeats = 12, + ScreeningId = 2 + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 136, + NumSeats = 17, + ScreeningId = 2 + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 196, + NumSeats = 1, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 21, 11, 11, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 87, + NumSeats = 9, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 21, 10, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 167, + NumSeats = 17, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 14, 11, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 23, + NumSeats = 1, + ScreeningId = 4 + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 93, + NumSeats = 2, + ScreeningId = 4 + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 163, + NumSeats = 4, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 12, 3, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 166, + NumSeats = 7, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 12, 5, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 12, + ScreeningId = 4 + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 10, + NumSeats = 13, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 11, 2, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 86, + NumSeats = 22, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 15, 8, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 8, + NumSeats = 23, + ScreeningId = 4 + }, + new + { + Id = 21, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 144, + NumSeats = 1, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 11, 3, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 102, + NumSeats = 9, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 16, 0, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 16, + ScreeningId = 5 + }, + new + { + Id = 24, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 174, + NumSeats = 19, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 15, 10, 10, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 134, + NumSeats = 1, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 20, 14, 35, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 218, + NumSeats = 8, + ScreeningId = 6 + }, + new + { + Id = 27, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 132, + NumSeats = 13, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 14, 8, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 16, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 19, 9, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 81, + NumSeats = 1, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 8, 8, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 80, + NumSeats = 3, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 8, 0, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 170, + NumSeats = 12, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 14, 8, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 199, + NumSeats = 17, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 9, 12, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 22, + NumSeats = 19, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 14, 9, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 171, + NumSeats = 1, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 17, 1, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 128, + NumSeats = 4, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 11, 8, 47, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 46, + NumSeats = 12, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 12, 9, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 112, + NumSeats = 16, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 14, 11, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 72, + NumSeats = 1, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 10, 9, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 106, + NumSeats = 6, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 16, 13, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 104, + NumSeats = 15, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 11, 11, 15, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 100, + NumSeats = 1, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 10, 4, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 157, + NumSeats = 9, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 14, 4, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 107, + NumSeats = 18, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 15, 12, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 20, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 15, 14, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 24, + NumSeats = 1, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 12, 2, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 46, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 153, + NumSeats = 2, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 14, 8, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 47, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 196, + NumSeats = 4, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 10, 12, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 48, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 137, + NumSeats = 6, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 18, 8, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 49, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 8, + NumSeats = 7, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 12, 13, 18, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 50, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 160, + NumSeats = 10, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 19, 1, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 51, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 158, + NumSeats = 13, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 19, 4, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 52, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 17, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 18, 9, 6, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 53, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 1, + ScreeningId = 12 + }, + new + { + Id = 54, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 19, + NumSeats = 5, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 16, 11, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 55, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 14, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 15, 14, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 56, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 19, + ScreeningId = 12 + }, + new + { + Id = 57, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 180, + NumSeats = 23, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 15, 6, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 58, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 128, + NumSeats = 1, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 13, 4, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 59, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 9, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 11, 13, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 60, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 185, + NumSeats = 18, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 9, 10, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 61, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 188, + NumSeats = 1, + ScreeningId = 14 + }, + new + { + Id = 62, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 50, + NumSeats = 2, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 10, 6, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 63, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 58, + NumSeats = 7, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 13, 1, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 64, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 162, + NumSeats = 16, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 12, 6, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 65, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 19, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 11, 6, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 66, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 123, + NumSeats = 1, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 9, 12, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 67, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 75, + NumSeats = 3, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 8, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 68, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 36, + NumSeats = 5, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 3, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 69, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 211, + NumSeats = 14, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 8, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 70, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 84, + NumSeats = 1, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 18, 12, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 71, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 17, + NumSeats = 10, + ScreeningId = 16 + }, + new + { + Id = 72, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 147, + NumSeats = 11, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 17, 0, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 73, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 17, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 18, 12, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 74, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 20, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 13, 14, 59, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 75, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 151, + NumSeats = 1, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 15, 2, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 76, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 35, + NumSeats = 8, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 18, 13, 11, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 77, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 10, + ScreeningId = 17 + }, + new + { + Id = 78, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 17, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 11, 10, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 79, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 51, + NumSeats = 22, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 12, 7, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 80, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 115, + NumSeats = 1, + ScreeningId = 18, + UpdatedAt = new DateTime(2020, 12, 16, 10, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 81, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 197, + NumSeats = 7, + ScreeningId = 18, + UpdatedAt = new DateTime(2020, 12, 13, 12, 17, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 82, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 240, + NumSeats = 14, + ScreeningId = 18 + }, + new + { + Id = 83, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 1, + ScreeningId = 19 + }, + new + { + Id = 84, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 21, + NumSeats = 5, + ScreeningId = 19 + }, + new + { + Id = 85, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 101, + NumSeats = 11, + ScreeningId = 19, + UpdatedAt = new DateTime(2020, 12, 14, 11, 25, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 86, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 16, + ScreeningId = 19 + }, + new + { + Id = 87, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 140, + NumSeats = 1, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 19, 1, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 88, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 218, + NumSeats = 8, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 14, 4, 12, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 89, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 15, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 17, 9, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 90, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 242, + NumSeats = 1, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 18, 9, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 91, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 121, + NumSeats = 2, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 13, 11, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 92, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 182, + NumSeats = 6, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 15, 1, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 93, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 26, + NumSeats = 9, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 20, 2, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 94, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 172, + NumSeats = 13, + ScreeningId = 21 + }, + new + { + Id = 95, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 149, + NumSeats = 19, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 19, 8, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 96, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 198, + NumSeats = 1, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 14, 12, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 97, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 119, + NumSeats = 4, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 20, 3, 25, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 98, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 51, + NumSeats = 11, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 12, 0, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 99, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 13, + NumSeats = 14, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 13, 5, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 100, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 159, + NumSeats = 1, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 15, 3, 51, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 101, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 38, + NumSeats = 2, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 12, 1, 37, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 102, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 209, + NumSeats = 11, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 11, 14, 27, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 103, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 184, + NumSeats = 12, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 14, 6, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 104, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 144, + NumSeats = 14, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 6, 11, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 105, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 206, + NumSeats = 1, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 14, 9, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 106, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 15, + NumSeats = 9, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 13, 9, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 107, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 145, + NumSeats = 15, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 16, 0, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 108, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 27, + NumSeats = 20, + ScreeningId = 24 + }, + new + { + Id = 109, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 1, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 18, 8, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 110, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 167, + NumSeats = 8, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 19, 8, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 111, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 173, + NumSeats = 14, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 18, 2, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 112, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 19, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 19, 7, 8, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 113, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 180, + NumSeats = 1, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 11, 4, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 114, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 123, + NumSeats = 8, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 8, 6, 18, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 115, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 138, + NumSeats = 16, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 13, 11, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 116, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 173, + NumSeats = 21, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 12, 12, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 117, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 236, + NumSeats = 1, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 14, 1, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 118, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 212, + NumSeats = 9, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 13, 6, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 119, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 142, + NumSeats = 15, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 10, 7, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 120, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 139, + NumSeats = 1, + ScreeningId = 28, + UpdatedAt = new DateTime(2020, 12, 13, 1, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 121, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 195, + NumSeats = 10, + ScreeningId = 28, + UpdatedAt = new DateTime(2020, 12, 13, 12, 42, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 122, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 194, + NumSeats = 19, + ScreeningId = 28 + }, + new + { + Id = 123, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 1, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 18, 3, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 124, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 178, + NumSeats = 3, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 21, 0, 33, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 125, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 160, + NumSeats = 4, + ScreeningId = 29 + }, + new + { + Id = 126, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 78, + NumSeats = 12, + ScreeningId = 29 + }, + new + { + Id = 127, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 37, + NumSeats = 16, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 19, 12, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 128, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 104, + NumSeats = 17, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 14, 14, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 129, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 1, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 15, 8, 57, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 130, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 91, + NumSeats = 2, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 12, 13, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 131, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 171, + NumSeats = 3, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 15, 3, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 132, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 48, + NumSeats = 10, + ScreeningId = 30 + }, + new + { + Id = 133, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 25, + NumSeats = 13, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 9, 8, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 134, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 168, + NumSeats = 17, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 10, 10, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 135, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 152, + NumSeats = 1, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 8, 4, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 136, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 202, + NumSeats = 6, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 7, 8, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 137, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 29, + NumSeats = 10, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 8, 12, 10, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 138, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 211, + NumSeats = 17, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 7, 12, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 139, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 175, + NumSeats = 1, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 15, 9, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 140, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 70, + NumSeats = 3, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 14, 14, 8, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 141, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 244, + NumSeats = 8, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 12, 8, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 142, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 44, + NumSeats = 13, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 8, 10, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 143, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 59, + NumSeats = 1, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 9, 4, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 144, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 4, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 9, 10, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 145, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 112, + NumSeats = 13, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 17, 0, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 146, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 169, + NumSeats = 15, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 14, 9, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 147, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 69, + NumSeats = 20, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 13, 10, 13, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 148, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 62, + NumSeats = 1, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 13, 10, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 149, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 188, + NumSeats = 2, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 20, 2, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 150, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 177, + NumSeats = 7, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 15, 5, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 151, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 9, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 14, 1, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 152, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 102, + NumSeats = 18, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 18, 4, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 153, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 20, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 13, 12, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 154, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 66, + NumSeats = 1, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 15, 7, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 155, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 41, + NumSeats = 5, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 11, 9, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 156, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 242, + NumSeats = 12, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 10, 12, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 157, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 186, + NumSeats = 19, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 17, 1, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 158, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 18, + NumSeats = 1, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 21, 5, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 159, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 147, + NumSeats = 3, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 14, 0, 37, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 160, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 10, + NumSeats = 8, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 20, 13, 14, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 161, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 212, + NumSeats = 16, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 17, 4, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 162, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 68, + NumSeats = 1, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 16, 12, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 163, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 210, + NumSeats = 5, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 12, 2, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 164, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 25, + NumSeats = 8, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 13, 6, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 165, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 14, + ScreeningId = 37 + }, + new + { + Id = 166, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 22, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 12, 13, 6, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 167, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 119, + NumSeats = 1, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 20, 11, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 168, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 14, + NumSeats = 3, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 13, 7, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 169, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 16, + NumSeats = 12, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 19, 4, 47, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 170, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 179, + NumSeats = 13, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 20, 5, 17, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 171, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 13, + NumSeats = 16, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 11, 3, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 172, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 194, + NumSeats = 18, + ScreeningId = 38 + }, + new + { + Id = 173, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 52, + NumSeats = 1, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 15, 3, 1, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 174, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 199, + NumSeats = 10, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 17, 11, 59, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 175, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 110, + NumSeats = 15, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 19, 10, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 176, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 108, + NumSeats = 16, + ScreeningId = 39 + }, + new + { + Id = 177, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 116, + NumSeats = 19, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 21, 8, 3, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 178, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 77, + NumSeats = 1, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 19, 9, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 179, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 181, + NumSeats = 8, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 13, 9, 3, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 180, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 70, + NumSeats = 17, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 18, 4, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 181, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 210, + NumSeats = 1, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 18, 7, 15, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 182, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 230, + NumSeats = 7, + ScreeningId = 41 + }, + new + { + Id = 183, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 169, + NumSeats = 11, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 23, 6, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 184, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 61, + NumSeats = 18, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 15, 12, 9, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 185, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 190, + NumSeats = 1, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 19, 14, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 186, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 37, + NumSeats = 2, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 18, 4, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 187, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 186, + NumSeats = 7, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 15, 8, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 188, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 184, + NumSeats = 14, + ScreeningId = 42 + }, + new + { + Id = 189, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 239, + NumSeats = 21, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 18, 6, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 190, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 57, + NumSeats = 1, + ScreeningId = 43, + UpdatedAt = new DateTime(2020, 12, 23, 6, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 191, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 117, + NumSeats = 9, + ScreeningId = 43, + UpdatedAt = new DateTime(2020, 12, 15, 1, 24, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 192, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 42, + NumSeats = 15, + ScreeningId = 43 + }, + new + { + Id = 193, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 99, + NumSeats = 1, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 13, 10, 33, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 194, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 183, + NumSeats = 8, + ScreeningId = 44 + }, + new + { + Id = 195, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 204, + NumSeats = 13, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 20, 9, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 196, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 64, + NumSeats = 16, + ScreeningId = 44 + }, + new + { + Id = 197, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 193, + NumSeats = 17, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 22, 12, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 198, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 114, + NumSeats = 1, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 14, 1, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 199, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 49, + NumSeats = 5, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 5, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 200, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 26, + NumSeats = 9, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 13, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 201, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 178, + NumSeats = 13, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 14, 5, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 202, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 175, + NumSeats = 15, + ScreeningId = 45 + }, + new + { + Id = 203, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 222, + NumSeats = 19, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 3, 36, 0, 0, DateTimeKind.Utc) + }); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082616_Firsto.cs b/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082616_Firsto.cs new file mode 100644 index 00000000..0a804913 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082616_Firsto.cs @@ -0,0 +1,649 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional + +namespace api_cinema_challenge.Migrations +{ + /// + public partial class Firsto : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "customers", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + Name = table.Column(type: "text", nullable: false), + Email = table.Column(type: "text", nullable: false), + Phone = table.Column(type: "text", nullable: false), + CreatedAt = table.Column(type: "timestamp with time zone", nullable: false), + UpdatedAt = table.Column(type: "timestamp with time zone", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_customers", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "movies", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + Title = table.Column(type: "text", nullable: false), + Rating = table.Column(type: "text", nullable: false), + Description = table.Column(type: "text", nullable: false), + RuntimeMins = table.Column(type: "integer", nullable: false), + CreatedAt = table.Column(type: "timestamp with time zone", nullable: false), + UpdatedAt = table.Column(type: "timestamp with time zone", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_movies", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "screenings", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + MovieId = table.Column(type: "integer", nullable: false), + ScreenNumber = table.Column(type: "integer", nullable: false), + Capacity = table.Column(type: "integer", nullable: false), + StartsAt = table.Column(type: "timestamp with time zone", nullable: false), + CreatedAt = table.Column(type: "timestamp with time zone", nullable: false), + UpdatedAt = table.Column(type: "timestamp with time zone", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_screenings", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "tickets", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + NumSeats = table.Column(type: "integer", nullable: false), + CustomerId = table.Column(type: "integer", nullable: false), + ScreeningId = table.Column(type: "integer", nullable: false), + CreatedAt = table.Column(type: "timestamp with time zone", nullable: false), + UpdatedAt = table.Column(type: "timestamp with time zone", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_tickets", x => x.Id); + }); + + migrationBuilder.InsertData( + table: "customers", + columns: new[] { "Id", "CreatedAt", "Email", "Name", "Phone", "UpdatedAt" }, + values: new object[,] + { + { 1, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), "serena.einstein@nasa.org.us", "Serena Einstein", "+4798654233", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 2, new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), "elvis.winslet@aftenposten.no", "Elvis Winslet", "+4750099200", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 3, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.hepburn@dagbladet.no", "Oprah Hepburn", "+4712586923", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 4, new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), "audrey.swift@apple.com", "Audrey Swift", "+4735146790", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 5, new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.jagger@vg.no", "Cristiano Jagger", "+4718010140", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 6, new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), "donald.windsor@microsoft.com", "Donald Windsor", "+4775818525", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 7, new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.gates@tokyo.ac.jp", "Rafael Gates", "+4793415257", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 8, new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), "donald.messi@ntnu.no", "Donald Messi", "+4798212673", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 9, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), "elvis.trump@microsoft.com", "Elvis Trump", "+4786467565", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 10, new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), "bill.freeman@sydney.edu.au", "Bill Freeman", "+4718375518", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 11, new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), "audrey.winslet@gov.nl", "Audrey Winslet", "+4754980153", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 12, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "timian.jackson@bbc.co.uk", "Timian Jackson", "+4753968651", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 13, new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), "mick.dicaprio@mit.edu", "Mick DiCaprio", "+4765811496", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 14, new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), "donald.nadal@ox.ac.uk", "Donald Nadal", "+4748913184", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 15, new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), "donald.monroe@something.com", "Donald Monroe", "+4736671902", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 16, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), "bill.federer@microsoft.com", "Bill Federer", "+4757983861", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 17, new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), "donald.depp@ntnu.no", "Donald Depp", "+4797198853", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 18, new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), "barack.swift@ox.ac.uk", "Barack Swift", "+4796317752", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 19, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), "messi.ronaldo@google.com", "Messi Ronaldo", "+4782992590", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 20, new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), "donald.gates@dagbladet.no", "Donald Gates", "+4740591714", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 21, new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), "serena.winfrey@harvard.edu", "Serena Winfrey", "+4765222914", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 22, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "audrey.winslet@uio.no", "Audrey Winslet", "+4728539812", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 23, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "charles.nadal@dagbladet.no", "Charles Nadal", "+4732717007", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 24, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "bill.einstein@wikipedia.org", "Bill Einstein", "+4724869515", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 25, new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.jolie@wikipedia.org", "Leonardo Jolie", "+4725870905", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 26, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.trump@amazon.com", "Taylor Trump", "+4782878137", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 27, new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.messi@theworld.ca", "Rafael Messi", "+4749157626", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 28, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), "roger.depp@apple.com", "Roger Depp", "+4731970591", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 29, new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), "bill.freeman@reddit.com", "Bill Freeman", "+4753931142", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 30, new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.freeman@un.org", "Jimi Freeman", "+4780233684", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 31, new DateTime(2020, 11, 6, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.jolie@reddit.com", "Rafael Jolie", "+4733425352", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 32, new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), "serena.windsor@amazon.com", "Serena Windsor", "+4724436799", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 33, new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), "barack.federer@uio.no", "Barack Federer", "+4741083924", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 34, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "charles.williams@vg.no", "Charles Williams", "+4777168827", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 35, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), "roger.depp@vg.no", "Roger Depp", "+4742944612", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 36, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.dicaprio@apple.com", "Oprah DiCaprio", "+4769307146", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 37, new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), "lionel.swift@harvard.edu", "Lionel Swift", "+4791515051", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 38, new DateTime(2020, 10, 21, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.husveg@uit.no", "Rafael Husveg", "+4727333786", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 39, new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.ronaldo@amazon.com", "Oprah Ronaldo", "+4791665621", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 40, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "messi.trump@google.com", "Messi Trump", "+4759808962", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 41, new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), "kate.nadal@gov.nl", "Kate Nadal", "+4796731002", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 42, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.hepburn@dn.no", "Rafael Hepburn", "+4716437790", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 43, new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), "audrey.freeman@mit.edu", "Audrey Freeman", "+4756423247", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 44, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), "audrey.obama@stackoverflow.com", "Audrey Obama", "+4746604824", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 45, new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), "kate.federer@vg.no", "Kate Federer", "+4730321514", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 46, new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), "serena.einstein@gov.ru", "Serena Einstein", "+4732187286", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 47, new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), "audrey.jolie@something.com", "Audrey Jolie", "+4780416108", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 48, new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.depp@gov.gr", "Jimi Depp", "+4780752954", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 49, new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.winfrey@regjeringen.no", "Cristiano Winfrey", "+4739241527", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 50, new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.einstein@nrk.no", "Oprah Einstein", "+4758624624", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 51, new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.swift@uit.no", "Cristiano Swift", "+4721969718", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 52, new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), "mick.middleton@gov.us", "Mick Middleton", "+4721577109", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 53, new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), "donald.nadal@stackoverflow.com", "Donald Nadal", "+4769091059", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 54, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), "kate.gates@aftenposten.no", "Kate Gates", "+4798264201", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 55, new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.clinton@nmbu.no", "Taylor Clinton", "+4728496247", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 56, new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.trump@dagbladet.no", "Leonardo Trump", "+4731078806", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 57, new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), "messi.federer@dagbladet.no", "Messi Federer", "+4786108458", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 58, new DateTime(2020, 11, 28, 0, 0, 0, 0, DateTimeKind.Utc), "elvis.hendrix@nasa.org.us", "Elvis Hendrix", "+4797020160", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 59, new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc), "elvis.winfrey@reddit.com", "Elvis Winfrey", "+4731283436", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 60, new DateTime(2020, 11, 1, 0, 0, 0, 0, DateTimeKind.Utc), "messi.obama@ntnu.no", "Messi Obama", "+4768500433", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 61, new DateTime(2020, 11, 15, 0, 0, 0, 0, DateTimeKind.Utc), "messi.clinton@sydney.edu.au", "Messi Clinton", "+4746386926", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 62, new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.jackson@wikipedia.org", "Jimi Jackson", "+4790575139", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 63, new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), "kate.hepburn@sydney.edu.au", "Kate Hepburn", "+4732025597", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 64, new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), "charles.jackson@mit.edu", "Charles Jackson", "+4769183730", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 65, new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.ronaldo@ox.ac.uk", "Cristiano Ronaldo", "+4750731503", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 66, new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), "lionel.windsor@regjeringen.no", "Lionel Windsor", "+4788091667", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 67, new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.williams@stackoverflow.com", "Cristiano Williams", "+4726432565", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 68, new DateTime(2020, 11, 14, 0, 0, 0, 0, DateTimeKind.Utc), "mick.jackson@who.int", "Mick Jackson", "+4754834908", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 69, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "donald.winslet@sydney.edu.au", "Donald Winslet", "+4794787088", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 70, new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), "kate.middleton@regjeringen.no", "Kate Middleton", "+4796871563", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 71, new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), "charles.nadal@un.org", "Charles Nadal", "+4721218762", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 72, new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), "messi.husveg@reddit.com", "Messi Husveg", "+4759628976", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 73, new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), "messi.federer@un.org", "Messi Federer", "+4790749534", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 74, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "messi.dicaprio@theworld.ca", "Messi DiCaprio", "+4726065401", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 75, new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), "timian.gates@sydney.edu.au", "Timian Gates", "+4771238544", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 76, new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), "audrey.jagger@ox.ac.uk", "Audrey Jagger", "+4782116146", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 77, new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), "lionel.winfrey@gov.us", "Lionel Winfrey", "+4722193419", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 78, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.messi@amazon.com", "Rafael Messi", "+4743134874", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 79, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), "bill.ronaldo@google.com", "Bill Ronaldo", "+4770005289", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 80, new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.federer@microsoft.com", "Rafael Federer", "+4781315514", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 81, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "donald.clinton@mit.edu", "Donald Clinton", "+4749543434", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 82, new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), "donald.jackson@nmbu.no", "Donald Jackson", "+4761118531", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 83, new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.swift@nmbu.no", "Oprah Swift", "+4757247965", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 84, new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), "bill.winslet@nmbu.no", "Bill Winslet", "+4725159829", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 85, new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), "mick.messi@harvard.edu", "Mick Messi", "+4740967675", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 86, new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.einstein@sydney.edu.au", "Cristiano Einstein", "+4786923921", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 87, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), "lionel.obama@gov.nl", "Lionel Obama", "+4791209991", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 88, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), "kate.einstein@microsoft.com", "Kate Einstein", "+4718948809", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 89, new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), "kate.nadal@mit.edu", "Kate Nadal", "+4711566291", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 90, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.obama@vg.no", "Taylor Obama", "+4710308065", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 91, new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.ronaldo@ntnu.no", "Oprah Ronaldo", "+4741344498", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 92, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.depp@sydney.edu.au", "Cristiano Depp", "+4742656755", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 93, new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), "bill.federer@apple.com", "Bill Federer", "+4725848809", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 94, new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), "mick.clinton@google.com", "Mick Clinton", "+4769471381", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 95, new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), "mick.depp@uit.no", "Mick Depp", "+4794558038", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 96, new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), "mick.trump@something.com", "Mick Trump", "+4782164706", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 97, new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), "barack.federer@google.com", "Barack Federer", "+4781495514", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 98, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), "bill.husveg@stackoverflow.com", "Bill Husveg", "+4724025822", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 99, new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.jackson@something.com", "Leonardo Jackson", "+4720007993", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 100, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "kate.windsor@tesla.com", "Kate Windsor", "+4779990851", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 101, new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), "charles.federer@gov.gr", "Charles Federer", "+4763148363", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 102, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "donald.obama@aftenposten.no", "Donald Obama", "+4755149875", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 103, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "roger.clinton@vg.no", "Roger Clinton", "+4784083446", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 104, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.depp@sydney.edu.au", "Jimi Depp", "+4725450309", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 105, new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), "messi.presley@nasa.org.us", "Messi Presley", "+4786155121", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 106, new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.nadal@sydney.edu.au", "Cristiano Nadal", "+4777987067", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 107, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), "mick.hendrix@gov.gr", "Mick Hendrix", "+4776568653", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 108, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.husveg@gov.us", "Rafael Husveg", "+4797198747", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 109, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.presley@un.org", "Taylor Presley", "+4749341027", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 110, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), "roger.swift@nrk.no", "Roger Swift", "+4713816113", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 111, new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), "donald.swift@nmbu.no", "Donald Swift", "+4772873967", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 112, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.freeman@uio.no", "Oprah Freeman", "+4723625072", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 113, new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.husveg@ox.ac.uk", "Rafael Husveg", "+4742570606", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 114, new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), "barack.winslet@google.com", "Barack Winslet", "+4760419448", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 115, new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), "barack.monroe@gov.ru", "Barack Monroe", "+4786987482", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 116, new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.trump@mit.edu", "Leonardo Trump", "+4790022318", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 117, new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), "serena.freeman@nasa.org.us", "Serena Freeman", "+4725135140", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 118, new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), "mick.jagger@microsoft.com", "Mick Jagger", "+4798688366", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 119, new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), "kate.obama@dagbladet.no", "Kate Obama", "+4729523943", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 120, new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.clinton@stackoverflow.com", "Leonardo Clinton", "+4761335158", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 121, new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), "mick.presley@uit.no", "Mick Presley", "+4793911593", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 122, new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), "mick.gates@dagbladet.no", "Mick Gates", "+4742098309", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 123, new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), "donald.husveg@gov.nl", "Donald Husveg", "+4744402784", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 124, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.nadal@tesla.com", "Oprah Nadal", "+4711821095", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 125, new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.trump@ntnu.no", "Leonardo Trump", "+4753659393", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 126, new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), "lionel.jolie@dn.no", "Lionel Jolie", "+4766011799", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 127, new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.ronaldo@regjeringen.no", "Taylor Ronaldo", "+4716034399", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 128, new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), "messi.gates@mit.edu", "Messi Gates", "+4726399068", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 129, new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.jolie@stackoverflow.com", "Leonardo Jolie", "+4785362268", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 130, new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), "barack.jolie@stackoverflow.com", "Barack Jolie", "+4796329523", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 131, new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), "timian.gates@something.com", "Timian Gates", "+4743227372", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 132, new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), "timian.husveg@nrk.no", "Timian Husveg", "+4753483733", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 133, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "timian.freeman@amazon.com", "Timian Freeman", "+4787189460", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 134, new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), "donald.trump@bbc.co.uk", "Donald Trump", "+4764181429", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 135, new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.jagger@amazon.com", "Oprah Jagger", "+4775511912", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 136, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), "roger.jolie@dn.no", "Roger Jolie", "+4733478038", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 137, new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.trump@who.int", "Jimi Trump", "+4757111945", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 138, new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), "kate.winslet@dn.no", "Kate Winslet", "+4729021342", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 139, new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), "messi.husveg@stackoverflow.com", "Messi Husveg", "+4776867537", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 140, new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.dicaprio@mit.edu", "Taylor DiCaprio", "+4769984935", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 141, new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.swift@theworld.ca", "Rafael Swift", "+4779376969", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 142, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "messi.depp@something.com", "Messi Depp", "+4789381758", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 143, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.husveg@ox.ac.uk", "Cristiano Husveg", "+4795356763", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 144, new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), "kate.gates@tesla.com", "Kate Gates", "+4731023984", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 145, new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), "timian.gates@theworld.ca", "Timian Gates", "+4792868122", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 146, new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), "kate.hendrix@tesla.com", "Kate Hendrix", "+4773179510", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 147, new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.presley@microsoft.com", "Leonardo Presley", "+4721249323", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 148, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), "messi.jagger@regjeringen.no", "Messi Jagger", "+4777383815", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 149, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.ronaldo@uit.no", "Taylor Ronaldo", "+4739168939", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 150, new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.trump@nrk.no", "Taylor Trump", "+4757236844", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 151, new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), "timian.jackson@aftenposten.no", "Timian Jackson", "+4747442491", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 152, new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), "bill.federer@dn.no", "Bill Federer", "+4773741695", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 153, new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), "roger.winslet@nrk.no", "Roger Winslet", "+4780917391", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 154, new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), "charles.jolie@nasa.org.us", "Charles Jolie", "+4768143256", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 155, new DateTime(2020, 11, 28, 0, 0, 0, 0, DateTimeKind.Utc), "kate.middleton@dn.no", "Kate Middleton", "+4746026165", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 156, new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), "charles.clinton@apple.com", "Charles Clinton", "+4749444494", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 157, new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), "timian.federer@microsoft.com", "Timian Federer", "+4775070583", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 158, new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), "timian.depp@ox.ac.uk", "Timian Depp", "+4792623051", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 159, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), "donald.jackson@nmbu.no", "Donald Jackson", "+4792943294", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 160, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "charles.jolie@bbc.co.uk", "Charles Jolie", "+4713572468", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 161, new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.ronaldo@amazon.com", "Jimi Ronaldo", "+4729363061", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 162, new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), "messi.winfrey@microsoft.com", "Messi Winfrey", "+4791858630", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 163, new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), "kate.hendrix@nmbu.no", "Kate Hendrix", "+4734057901", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 164, new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.middleton@theworld.ca", "Oprah Middleton", "+4799913874", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 165, new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.middleton@who.int", "Oprah Middleton", "+4783907296", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 166, new DateTime(2020, 10, 22, 0, 0, 0, 0, DateTimeKind.Utc), "messi.presley@nrk.no", "Messi Presley", "+4712410015", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 167, new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.gates@vg.no", "Cristiano Gates", "+4787999809", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 168, new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), "serena.jagger@gov.nl", "Serena Jagger", "+4769339223", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 169, new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), "kate.gates@tesla.com", "Kate Gates", "+4783633084", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 170, new DateTime(2020, 10, 18, 0, 0, 0, 0, DateTimeKind.Utc), "bill.obama@ntnu.no", "Bill Obama", "+4778618509", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 171, new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), "messi.monroe@gov.nl", "Messi Monroe", "+4777149234", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 172, new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.windsor@sydney.edu.au", "Rafael Windsor", "+4774253974", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 173, new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), "kate.husveg@vg.no", "Kate Husveg", "+4712262036", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 174, new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.hendrix@un.org", "Jimi Hendrix", "+4723594804", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 175, new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.jagger@reddit.com", "Rafael Jagger", "+4769734141", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 176, new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), "kate.dicaprio@nasa.org.us", "Kate DiCaprio", "+4730476680", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 177, new DateTime(2020, 11, 6, 0, 0, 0, 0, DateTimeKind.Utc), "timian.winslet@ntnu.no", "Timian Winslet", "+4746378599", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 178, new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.jagger@amazon.com", "Oprah Jagger", "+4714577884", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 179, new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), "charles.jolie@amazon.com", "Charles Jolie", "+4721243178", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 180, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.hepburn@nasa.org.us", "Rafael Hepburn", "+4744499745", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 181, new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), "elvis.hepburn@openai.com", "Elvis Hepburn", "+4783117733", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 182, new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), "messi.hendrix@openai.com", "Messi Hendrix", "+4723747134", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 183, new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), "mick.clinton@nmbu.no", "Mick Clinton", "+4747052865", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 184, new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.jagger@gov.ru", "Taylor Jagger", "+4714589778", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 185, new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.hepburn@dagbladet.no", "Jimi Hepburn", "+4760889722", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 186, new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), "charles.winslet@un.org", "Charles Winslet", "+4727804466", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 187, new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.messi@harvard.edu", "Taylor Messi", "+4760033392", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 188, new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.middleton@gov.ru", "Leonardo Middleton", "+4788377888", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 189, new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), "donald.obama@reddit.com", "Donald Obama", "+4752993643", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 190, new DateTime(2020, 11, 15, 0, 0, 0, 0, DateTimeKind.Utc), "donald.windsor@sydney.edu.au", "Donald Windsor", "+4778018462", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 191, new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.freeman@theworld.ca", "Rafael Freeman", "+4731492399", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 192, new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), "mick.nadal@openai.com", "Mick Nadal", "+4726179198", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 193, new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), "charles.jagger@dn.no", "Charles Jagger", "+4786749070", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 194, new DateTime(2020, 11, 20, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.williams@regjeringen.no", "Oprah Williams", "+4785560056", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 195, new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), "messi.hendrix@gov.us", "Messi Hendrix", "+4788004459", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 196, new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), "taylor.federer@gov.nl", "Taylor Federer", "+4795714823", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 197, new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.trump@amazon.com", "Cristiano Trump", "+4756871101", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 198, new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.depp@regjeringen.no", "Cristiano Depp", "+4794243831", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 199, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "mick.hepburn@sydney.edu.au", "Mick Hepburn", "+4768379350", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 200, new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.jagger@uit.no", "Oprah Jagger", "+4774908337", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 201, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.einstein@tesla.com", "Jimi Einstein", "+4768730068", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 202, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "messi.monroe@mit.edu", "Messi Monroe", "+4754049485", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 203, new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), "barack.messi@nmbu.no", "Barack Messi", "+4787360423", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 204, new DateTime(2020, 10, 22, 0, 0, 0, 0, DateTimeKind.Utc), "barack.gates@something.com", "Barack Gates", "+4713260319", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 205, new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), "messi.obama@stackoverflow.com", "Messi Obama", "+4732311046", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 206, new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), "lionel.nadal@wikipedia.org", "Lionel Nadal", "+4764701764", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 207, new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.nadal@stackoverflow.com", "Jimi Nadal", "+4728919645", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 208, new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.windsor@mit.edu", "Leonardo Windsor", "+4733291487", new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 209, new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), "mick.dicaprio@ox.ac.uk", "Mick DiCaprio", "+4731719366", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 210, new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.williams@wikipedia.org", "Cristiano Williams", "+4734668408", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 211, new DateTime(2020, 11, 3, 0, 0, 0, 0, DateTimeKind.Utc), "charles.gates@apple.com", "Charles Gates", "+4715249439", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 212, new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), "roger.obama@dagbladet.no", "Roger Obama", "+4754594896", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 213, new DateTime(2020, 10, 21, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.ronaldo@tesla.com", "Leonardo Ronaldo", "+4717295123", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 214, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.ronaldo@tesla.com", "Cristiano Ronaldo", "+4743874215", new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 215, new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), "timian.swift@openai.com", "Timian Swift", "+4763969684", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 216, new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.monroe@harvard.edu", "Rafael Monroe", "+4784375644", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 217, new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), "donald.jolie@stackoverflow.com", "Donald Jolie", "+4772151502", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 218, new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.federer@microsoft.com", "Oprah Federer", "+4791939721", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 219, new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), "bill.jagger@aftenposten.no", "Bill Jagger", "+4778911660", new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 220, new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), "messi.middleton@dagbladet.no", "Messi Middleton", "+4722464563", new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 221, new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), "elvis.hepburn@amazon.com", "Elvis Hepburn", "+4735338366", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 222, new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), "barack.jackson@stackoverflow.com", "Barack Jackson", "+4773026146", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 223, new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), "mick.hendrix@gov.ru", "Mick Hendrix", "+4725615535", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 224, new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), "oprah.gates@apple.com", "Oprah Gates", "+4799942352", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 225, new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), "jimi.jackson@regjeringen.no", "Jimi Jackson", "+4721734511", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 226, new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), "lionel.presley@gov.ru", "Lionel Presley", "+4712334915", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 227, new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), "mick.hendrix@openai.com", "Mick Hendrix", "+4750872119", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 228, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "roger.middleton@uit.no", "Roger Middleton", "+4762484064", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 229, new DateTime(2020, 11, 3, 0, 0, 0, 0, DateTimeKind.Utc), "serena.jagger@who.int", "Serena Jagger", "+4787783850", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 230, new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), "elvis.winslet@mit.edu", "Elvis Winslet", "+4756369336", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 231, new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), "barack.gates@apple.com", "Barack Gates", "+4799336168", new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 232, new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), "lionel.winfrey@sydney.edu.au", "Lionel Winfrey", "+4787214840", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 233, new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.gates@reddit.com", "Rafael Gates", "+4797465413", new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 234, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), "kate.ronaldo@stackoverflow.com", "Kate Ronaldo", "+4713662516", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 235, new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), "serena.winslet@nmbu.no", "Serena Winslet", "+4796131717", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 236, new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), "barack.presley@uio.no", "Barack Presley", "+4797258217", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 237, new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), "kate.jolie@openai.com", "Kate Jolie", "+4796395559", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 238, new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), "kate.swift@uit.no", "Kate Swift", "+4798271334", new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 239, new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.dicaprio@nmbu.no", "Leonardo DiCaprio", "+4778889329", new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 240, new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.winslet@wikipedia.org", "Cristiano Winslet", "+4724377752", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 241, new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), "messi.swift@harvard.edu", "Messi Swift", "+4799525339", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 242, new DateTime(2020, 10, 18, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.nadal@gov.us", "Rafael Nadal", "+4721403869", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 243, new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.monroe@something.com", "Cristiano Monroe", "+4785649771", new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 244, new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), "mick.messi@apple.com", "Mick Messi", "+4716903521", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 245, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.einstein@mit.edu", "Leonardo Einstein", "+4790859687", new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 246, new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), "cristiano.freeman@un.org", "Cristiano Freeman", "+4743791572", new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 247, new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), "leonardo.swift@theworld.ca", "Leonardo Swift", "+4790624988", new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 248, new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), "bill.depp@amazon.com", "Bill Depp", "+4753167607", new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 249, new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), "rafael.depp@wikipedia.org", "Rafael Depp", "+4766839558", new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) } + }); + + migrationBuilder.InsertData( + table: "movies", + columns: new[] { "Id", "CreatedAt", "Description", "Rating", "RuntimeMins", "Title", "UpdatedAt" }, + values: new object[,] + { + { 1, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", "9.3", 142, "The Shawshank Redemption", new DateTime(2019, 8, 21, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 2, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), "The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son.", "9.2", 175, "The Godfather", new DateTime(2019, 9, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 3, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "When the menace known as the Joker wreaks havoc and chaos on Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.", "9.1", 252, "The Dark Knight", null }, + { 4, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "The lives of two mob hitmen, a boxer, a gangster's wife, and a pair of diner bandits intertwine in four tales of violence and redemption.", "8.8", 254, "Pulp Fiction", new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 5, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), "The presidencies of Kennedy and Johnson, the Vietnam War, and other history unfold through the perspective of an Alabama man with an IQ of 75.", "8.8", 242, "Forrest Gump", new DateTime(2018, 3, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 6, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), "A thief who steals corporate secrets through dream-sharing technology is given the inverse task of planting an idea into the mind of a CEO.", "8.8", 248, "Inception", new DateTime(2020, 2, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 7, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into something much more.", "8.8", 239, "Fight Club", new DateTime(2019, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 8, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), "A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.", "8.7", 236, "The Matrix", new DateTime(2020, 6, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 9, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.", "8.7", 269, "Interstellar", new DateTime(2020, 6, 11, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 10, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.", "8.5", 232, "Parasite", new DateTime(2018, 9, 3, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 11, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), "A meek Hobbit sets out on a journey to destroy a powerful ring and save Middle-earth from the Dark Lord Sauron.", "8.8", 178, "The Lord of the Rings: The Fellowship of the Ring", new DateTime(2018, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 12, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), "The fellowship continues their fight against Sauron's forces while Frodo and Sam draw closer to Mordor.", "8.7", 179, "The Lord of the Rings: The Two Towers", new DateTime(2018, 3, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 13, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), "The final battle for Middle-earth begins as Frodo and Sam reach the heart of Mordor to destroy the One Ring.", "8.9", 201, "The Lord of the Rings: The Return of the King", null }, + { 14, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), "A former Roman general seeks vengeance against the corrupt emperor who murdered his family and sent him into slavery.", "8.5", 155, "Gladiator", new DateTime(2019, 6, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 15, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), "Simba, a young lion prince, flees his kingdom after the murder of his father but eventually learns the true meaning of responsibility and bravery.", "8.5", 88, "The Lion King", null }, + { 16, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), "Two rival magicians engage in a bitter competition, obsessively trying to outdo each other with dangerous tricks and illusions.", "8.5", 130, "The Prestige", new DateTime(2019, 9, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 17, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), "A young drummer enrolls at a music conservatory and struggles under the extreme demands of a ruthless instructor.", "8.5", 106, "Whiplash", new DateTime(2019, 8, 15, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 18, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), "An undercover cop and a mole in the police force try to identify each other while infiltrating an Irish gang in Boston.", "8.5", 151, "The Departed", new DateTime(2019, 6, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 19, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), "A failed comedian descends into madness and emerges as the infamous criminal mastermind in Gotham City.", "8.4", 122, "Joker", new DateTime(2019, 1, 11, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 20, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), "The surviving members of the Avengers work together to undo the destruction caused by Thanos and restore balance to the universe.", "8.4", 181, "Avengers: Endgame", new DateTime(2018, 4, 30, 0, 0, 0, 0, DateTimeKind.Utc) } + }); + + migrationBuilder.InsertData( + table: "screenings", + columns: new[] { "Id", "Capacity", "CreatedAt", "MovieId", "ScreenNumber", "StartsAt", "UpdatedAt" }, + values: new object[,] + { + { 1, 24, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 2, 20, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 0, 3, new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 3, 21, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 5, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 4, 24, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 0, 3, new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 5, 20, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 6, 24, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 7, 21, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 0, 3, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 8, 20, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 0, 3, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 9, 22, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), 0, 3, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 10, 22, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 11, 22, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 12, 24, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 13, 24, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 0, 3, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 14, 22, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), 0, 5, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 15, 22, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 16, 22, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 17, 23, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 18, 20, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), 0, 5, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 19, 20, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 20, 20, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 21, 22, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 22, 21, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 23, 21, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 24, 23, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 25, 23, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 26, 24, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 27, 20, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), 0, 3, new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 28, 23, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 29, 22, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 30, 24, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 31, 21, new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 32, 20, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), 0, 5, new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 33, 22, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 0, 5, new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 34, 23, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 35, 21, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 36, 23, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 37, 24, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 38, 23, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 39, 22, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 40, 24, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 0, 1, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 41, 21, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 5, new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 42, 23, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 0, 3, new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 43, 20, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), null }, + { 44, 23, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 0, 4, new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) }, + { 45, 22, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 0, 2, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), null } + }); + + migrationBuilder.InsertData( + table: "tickets", + columns: new[] { "Id", "CreatedAt", "CustomerId", "NumSeats", "ScreeningId", "UpdatedAt" }, + values: new object[,] + { + { 1, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 204, 1, 1, new DateTime(2020, 12, 12, 7, 28, 0, 0, DateTimeKind.Utc) }, + { 2, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 141, 10, 1, new DateTime(2020, 12, 10, 11, 50, 0, 0, DateTimeKind.Utc) }, + { 3, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 3, 14, 1, new DateTime(2020, 12, 10, 12, 9, 0, 0, DateTimeKind.Utc) }, + { 4, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 174, 15, 1, new DateTime(2020, 12, 8, 1, 29, 0, 0, DateTimeKind.Utc) }, + { 5, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 118, 20, 1, new DateTime(2020, 12, 12, 10, 19, 0, 0, DateTimeKind.Utc) }, + { 6, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 60, 1, 2, new DateTime(2020, 12, 14, 9, 38, 0, 0, DateTimeKind.Utc) }, + { 7, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 96, 7, 2, new DateTime(2020, 12, 11, 12, 12, 0, 0, DateTimeKind.Utc) }, + { 8, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 195, 12, 2, null }, + { 9, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 136, 17, 2, null }, + { 10, new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), 196, 1, 3, new DateTime(2020, 12, 21, 11, 11, 0, 0, DateTimeKind.Utc) }, + { 11, new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), 87, 9, 3, new DateTime(2020, 12, 21, 10, 2, 0, 0, DateTimeKind.Utc) }, + { 12, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 167, 17, 3, new DateTime(2020, 12, 14, 11, 54, 0, 0, DateTimeKind.Utc) }, + { 13, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 23, 1, 4, null }, + { 14, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 93, 2, 4, null }, + { 15, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 163, 4, 4, new DateTime(2020, 12, 12, 3, 55, 0, 0, DateTimeKind.Utc) }, + { 16, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 166, 7, 4, new DateTime(2020, 12, 12, 5, 4, 0, 0, DateTimeKind.Utc) }, + { 17, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 226, 12, 4, null }, + { 18, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 10, 13, 4, new DateTime(2020, 12, 11, 2, 2, 0, 0, DateTimeKind.Utc) }, + { 19, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 86, 22, 4, new DateTime(2020, 12, 15, 8, 2, 0, 0, DateTimeKind.Utc) }, + { 20, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 8, 23, 4, null }, + { 21, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 144, 1, 5, new DateTime(2020, 12, 11, 3, 41, 0, 0, DateTimeKind.Utc) }, + { 22, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), 102, 9, 5, new DateTime(2020, 12, 16, 0, 21, 0, 0, DateTimeKind.Utc) }, + { 23, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 4, 16, 5, null }, + { 24, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 174, 19, 5, new DateTime(2020, 12, 15, 10, 10, 0, 0, DateTimeKind.Utc) }, + { 25, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 134, 1, 6, new DateTime(2020, 12, 20, 14, 35, 0, 0, DateTimeKind.Utc) }, + { 26, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 218, 8, 6, null }, + { 27, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 132, 13, 6, new DateTime(2020, 12, 14, 8, 4, 0, 0, DateTimeKind.Utc) }, + { 28, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 248, 16, 6, new DateTime(2020, 12, 19, 9, 50, 0, 0, DateTimeKind.Utc) }, + { 29, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 81, 1, 7, new DateTime(2020, 12, 8, 8, 19, 0, 0, DateTimeKind.Utc) }, + { 30, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 80, 3, 7, new DateTime(2020, 12, 8, 0, 50, 0, 0, DateTimeKind.Utc) }, + { 31, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 170, 12, 7, new DateTime(2020, 12, 14, 8, 58, 0, 0, DateTimeKind.Utc) }, + { 32, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 199, 17, 7, new DateTime(2020, 12, 9, 12, 31, 0, 0, DateTimeKind.Utc) }, + { 33, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 22, 19, 7, new DateTime(2020, 12, 14, 9, 20, 0, 0, DateTimeKind.Utc) }, + { 34, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 171, 1, 8, new DateTime(2020, 12, 17, 1, 23, 0, 0, DateTimeKind.Utc) }, + { 35, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 128, 4, 8, new DateTime(2020, 12, 11, 8, 47, 0, 0, DateTimeKind.Utc) }, + { 36, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 46, 12, 8, new DateTime(2020, 12, 12, 9, 56, 0, 0, DateTimeKind.Utc) }, + { 37, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 112, 16, 8, new DateTime(2020, 12, 14, 11, 53, 0, 0, DateTimeKind.Utc) }, + { 38, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 72, 1, 9, new DateTime(2020, 12, 10, 9, 26, 0, 0, DateTimeKind.Utc) }, + { 39, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), 106, 6, 9, new DateTime(2020, 12, 16, 13, 5, 0, 0, DateTimeKind.Utc) }, + { 40, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 104, 15, 9, new DateTime(2020, 12, 11, 11, 15, 0, 0, DateTimeKind.Utc) }, + { 41, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 100, 1, 10, new DateTime(2020, 12, 10, 4, 49, 0, 0, DateTimeKind.Utc) }, + { 42, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 157, 9, 10, new DateTime(2020, 12, 14, 4, 38, 0, 0, DateTimeKind.Utc) }, + { 43, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 107, 18, 10, new DateTime(2020, 12, 15, 12, 58, 0, 0, DateTimeKind.Utc) }, + { 44, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 245, 20, 10, new DateTime(2020, 12, 15, 14, 36, 0, 0, DateTimeKind.Utc) }, + { 45, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 24, 1, 11, new DateTime(2020, 12, 12, 2, 43, 0, 0, DateTimeKind.Utc) }, + { 46, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 153, 2, 11, new DateTime(2020, 12, 14, 8, 32, 0, 0, DateTimeKind.Utc) }, + { 47, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 196, 4, 11, new DateTime(2020, 12, 10, 12, 31, 0, 0, DateTimeKind.Utc) }, + { 48, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 137, 6, 11, new DateTime(2020, 12, 18, 8, 55, 0, 0, DateTimeKind.Utc) }, + { 49, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 8, 7, 11, new DateTime(2020, 12, 12, 13, 18, 0, 0, DateTimeKind.Utc) }, + { 50, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 160, 10, 11, new DateTime(2020, 12, 19, 1, 4, 0, 0, DateTimeKind.Utc) }, + { 51, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 158, 13, 11, new DateTime(2020, 12, 19, 4, 52, 0, 0, DateTimeKind.Utc) }, + { 52, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 3, 17, 11, new DateTime(2020, 12, 18, 9, 6, 0, 0, DateTimeKind.Utc) }, + { 53, new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), 141, 1, 12, null }, + { 54, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), 19, 5, 12, new DateTime(2020, 12, 16, 11, 50, 0, 0, DateTimeKind.Utc) }, + { 55, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 4, 14, 12, new DateTime(2020, 12, 15, 14, 40, 0, 0, DateTimeKind.Utc) }, + { 56, new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), 141, 19, 12, null }, + { 57, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 180, 23, 12, new DateTime(2020, 12, 15, 6, 48, 0, 0, DateTimeKind.Utc) }, + { 58, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 128, 1, 13, new DateTime(2020, 12, 13, 4, 38, 0, 0, DateTimeKind.Utc) }, + { 59, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 226, 9, 13, new DateTime(2020, 12, 11, 13, 44, 0, 0, DateTimeKind.Utc) }, + { 60, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 185, 18, 13, new DateTime(2020, 12, 9, 10, 54, 0, 0, DateTimeKind.Utc) }, + { 61, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), 188, 1, 14, null }, + { 62, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 50, 2, 14, new DateTime(2020, 12, 10, 6, 7, 0, 0, DateTimeKind.Utc) }, + { 63, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 58, 7, 14, new DateTime(2020, 12, 13, 1, 0, 0, 0, DateTimeKind.Utc) }, + { 64, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 162, 16, 14, new DateTime(2020, 12, 12, 6, 58, 0, 0, DateTimeKind.Utc) }, + { 65, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 3, 19, 14, new DateTime(2020, 12, 11, 6, 46, 0, 0, DateTimeKind.Utc) }, + { 66, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 123, 1, 15, new DateTime(2020, 12, 9, 12, 41, 0, 0, DateTimeKind.Utc) }, + { 67, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 75, 3, 15, new DateTime(2020, 12, 13, 8, 22, 0, 0, DateTimeKind.Utc) }, + { 68, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 36, 5, 15, new DateTime(2020, 12, 13, 3, 5, 0, 0, DateTimeKind.Utc) }, + { 69, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 211, 14, 15, new DateTime(2020, 12, 13, 8, 49, 0, 0, DateTimeKind.Utc) }, + { 70, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 84, 1, 16, new DateTime(2020, 12, 18, 12, 40, 0, 0, DateTimeKind.Utc) }, + { 71, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 17, 10, 16, null }, + { 72, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 147, 11, 16, new DateTime(2020, 12, 17, 0, 43, 0, 0, DateTimeKind.Utc) }, + { 73, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 122, 17, 16, new DateTime(2020, 12, 18, 12, 53, 0, 0, DateTimeKind.Utc) }, + { 74, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 122, 20, 16, new DateTime(2020, 12, 13, 14, 59, 0, 0, DateTimeKind.Utc) }, + { 75, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 151, 1, 17, new DateTime(2020, 12, 15, 2, 32, 0, 0, DateTimeKind.Utc) }, + { 76, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 35, 8, 17, new DateTime(2020, 12, 18, 13, 11, 0, 0, DateTimeKind.Utc) }, + { 77, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 124, 10, 17, null }, + { 78, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 133, 17, 17, new DateTime(2020, 12, 11, 10, 46, 0, 0, DateTimeKind.Utc) }, + { 79, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 51, 22, 17, new DateTime(2020, 12, 12, 7, 54, 0, 0, DateTimeKind.Utc) }, + { 80, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), 115, 1, 18, new DateTime(2020, 12, 16, 10, 16, 0, 0, DateTimeKind.Utc) }, + { 81, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 197, 7, 18, new DateTime(2020, 12, 13, 12, 17, 0, 0, DateTimeKind.Utc) }, + { 82, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 240, 14, 18, null }, + { 83, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), 245, 1, 19, null }, + { 84, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 21, 5, 19, null }, + { 85, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 101, 11, 19, new DateTime(2020, 12, 14, 11, 25, 0, 0, DateTimeKind.Utc) }, + { 86, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), 245, 16, 19, null }, + { 87, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 140, 1, 20, new DateTime(2020, 12, 19, 1, 29, 0, 0, DateTimeKind.Utc) }, + { 88, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 218, 8, 20, new DateTime(2020, 12, 14, 4, 12, 0, 0, DateTimeKind.Utc) }, + { 89, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 124, 15, 20, new DateTime(2020, 12, 17, 9, 38, 0, 0, DateTimeKind.Utc) }, + { 90, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 242, 1, 21, new DateTime(2020, 12, 18, 9, 52, 0, 0, DateTimeKind.Utc) }, + { 91, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 121, 2, 21, new DateTime(2020, 12, 13, 11, 21, 0, 0, DateTimeKind.Utc) }, + { 92, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 182, 6, 21, new DateTime(2020, 12, 15, 1, 28, 0, 0, DateTimeKind.Utc) }, + { 93, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 26, 9, 21, new DateTime(2020, 12, 20, 2, 26, 0, 0, DateTimeKind.Utc) }, + { 94, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 172, 13, 21, null }, + { 95, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 149, 19, 21, new DateTime(2020, 12, 19, 8, 7, 0, 0, DateTimeKind.Utc) }, + { 96, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 198, 1, 22, new DateTime(2020, 12, 14, 12, 2, 0, 0, DateTimeKind.Utc) }, + { 97, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 119, 4, 22, new DateTime(2020, 12, 20, 3, 25, 0, 0, DateTimeKind.Utc) }, + { 98, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 51, 11, 22, new DateTime(2020, 12, 12, 0, 36, 0, 0, DateTimeKind.Utc) }, + { 99, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 13, 14, 22, new DateTime(2020, 12, 13, 5, 40, 0, 0, DateTimeKind.Utc) }, + { 100, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 159, 1, 23, new DateTime(2020, 12, 15, 3, 51, 0, 0, DateTimeKind.Utc) }, + { 101, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 38, 2, 23, new DateTime(2020, 12, 12, 1, 37, 0, 0, DateTimeKind.Utc) }, + { 102, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 209, 11, 23, new DateTime(2020, 12, 11, 14, 27, 0, 0, DateTimeKind.Utc) }, + { 103, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 184, 12, 23, new DateTime(2020, 12, 14, 6, 43, 0, 0, DateTimeKind.Utc) }, + { 104, new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), 144, 14, 23, new DateTime(2020, 12, 6, 11, 39, 0, 0, DateTimeKind.Utc) }, + { 105, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 206, 1, 24, new DateTime(2020, 12, 14, 9, 23, 0, 0, DateTimeKind.Utc) }, + { 106, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 15, 9, 24, new DateTime(2020, 12, 13, 9, 54, 0, 0, DateTimeKind.Utc) }, + { 107, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), 145, 15, 24, new DateTime(2020, 12, 16, 0, 36, 0, 0, DateTimeKind.Utc) }, + { 108, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 27, 20, 24, null }, + { 109, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 4, 1, 25, new DateTime(2020, 12, 18, 8, 44, 0, 0, DateTimeKind.Utc) }, + { 110, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 167, 8, 25, new DateTime(2020, 12, 19, 8, 26, 0, 0, DateTimeKind.Utc) }, + { 111, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 173, 14, 25, new DateTime(2020, 12, 18, 2, 29, 0, 0, DateTimeKind.Utc) }, + { 112, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 248, 19, 25, new DateTime(2020, 12, 19, 7, 8, 0, 0, DateTimeKind.Utc) }, + { 113, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 180, 1, 26, new DateTime(2020, 12, 11, 4, 53, 0, 0, DateTimeKind.Utc) }, + { 114, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 123, 8, 26, new DateTime(2020, 12, 8, 6, 18, 0, 0, DateTimeKind.Utc) }, + { 115, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 138, 16, 26, new DateTime(2020, 12, 13, 11, 49, 0, 0, DateTimeKind.Utc) }, + { 116, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 173, 21, 26, new DateTime(2020, 12, 12, 12, 40, 0, 0, DateTimeKind.Utc) }, + { 117, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 236, 1, 27, new DateTime(2020, 12, 14, 1, 22, 0, 0, DateTimeKind.Utc) }, + { 118, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 212, 9, 27, new DateTime(2020, 12, 13, 6, 48, 0, 0, DateTimeKind.Utc) }, + { 119, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 142, 15, 27, new DateTime(2020, 12, 10, 7, 7, 0, 0, DateTimeKind.Utc) }, + { 120, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 139, 1, 28, new DateTime(2020, 12, 13, 1, 23, 0, 0, DateTimeKind.Utc) }, + { 121, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 195, 10, 28, new DateTime(2020, 12, 13, 12, 42, 0, 0, DateTimeKind.Utc) }, + { 122, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), 194, 19, 28, null }, + { 123, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 133, 1, 29, new DateTime(2020, 12, 18, 3, 19, 0, 0, DateTimeKind.Utc) }, + { 124, new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), 178, 3, 29, new DateTime(2020, 12, 21, 0, 33, 0, 0, DateTimeKind.Utc) }, + { 125, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 160, 4, 29, null }, + { 126, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 78, 12, 29, null }, + { 127, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 37, 16, 29, new DateTime(2020, 12, 19, 12, 52, 0, 0, DateTimeKind.Utc) }, + { 128, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 104, 17, 29, new DateTime(2020, 12, 14, 14, 39, 0, 0, DateTimeKind.Utc) }, + { 129, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 226, 1, 30, new DateTime(2020, 12, 15, 8, 57, 0, 0, DateTimeKind.Utc) }, + { 130, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 91, 2, 30, new DateTime(2020, 12, 12, 13, 40, 0, 0, DateTimeKind.Utc) }, + { 131, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 171, 3, 30, new DateTime(2020, 12, 15, 3, 26, 0, 0, DateTimeKind.Utc) }, + { 132, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 48, 10, 30, null }, + { 133, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 25, 13, 30, new DateTime(2020, 12, 9, 8, 20, 0, 0, DateTimeKind.Utc) }, + { 134, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 168, 17, 30, new DateTime(2020, 12, 10, 10, 43, 0, 0, DateTimeKind.Utc) }, + { 135, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 152, 1, 31, new DateTime(2020, 12, 8, 4, 44, 0, 0, DateTimeKind.Utc) }, + { 136, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), 202, 6, 31, new DateTime(2020, 12, 7, 8, 39, 0, 0, DateTimeKind.Utc) }, + { 137, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 29, 10, 31, new DateTime(2020, 12, 8, 12, 10, 0, 0, DateTimeKind.Utc) }, + { 138, new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), 211, 17, 31, new DateTime(2020, 12, 7, 12, 30, 0, 0, DateTimeKind.Utc) }, + { 139, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 175, 1, 32, new DateTime(2020, 12, 15, 9, 34, 0, 0, DateTimeKind.Utc) }, + { 140, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 70, 3, 32, new DateTime(2020, 12, 14, 14, 8, 0, 0, DateTimeKind.Utc) }, + { 141, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 244, 8, 32, new DateTime(2020, 12, 12, 8, 50, 0, 0, DateTimeKind.Utc) }, + { 142, new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), 44, 13, 32, new DateTime(2020, 12, 8, 10, 5, 0, 0, DateTimeKind.Utc) }, + { 143, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 59, 1, 33, new DateTime(2020, 12, 9, 4, 36, 0, 0, DateTimeKind.Utc) }, + { 144, new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), 133, 4, 33, new DateTime(2020, 12, 9, 10, 32, 0, 0, DateTimeKind.Utc) }, + { 145, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 112, 13, 33, new DateTime(2020, 12, 17, 0, 20, 0, 0, DateTimeKind.Utc) }, + { 146, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 169, 15, 33, new DateTime(2020, 12, 14, 9, 48, 0, 0, DateTimeKind.Utc) }, + { 147, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 69, 20, 33, new DateTime(2020, 12, 13, 10, 13, 0, 0, DateTimeKind.Utc) }, + { 148, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 62, 1, 34, new DateTime(2020, 12, 13, 10, 34, 0, 0, DateTimeKind.Utc) }, + { 149, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 188, 2, 34, new DateTime(2020, 12, 20, 2, 31, 0, 0, DateTimeKind.Utc) }, + { 150, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 177, 7, 34, new DateTime(2020, 12, 15, 5, 50, 0, 0, DateTimeKind.Utc) }, + { 151, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 124, 9, 34, new DateTime(2020, 12, 14, 1, 55, 0, 0, DateTimeKind.Utc) }, + { 152, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 102, 18, 34, new DateTime(2020, 12, 18, 4, 50, 0, 0, DateTimeKind.Utc) }, + { 153, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 3, 20, 34, new DateTime(2020, 12, 13, 12, 56, 0, 0, DateTimeKind.Utc) }, + { 154, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 66, 1, 35, new DateTime(2020, 12, 15, 7, 26, 0, 0, DateTimeKind.Utc) }, + { 155, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 41, 5, 35, new DateTime(2020, 12, 11, 9, 19, 0, 0, DateTimeKind.Utc) }, + { 156, new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), 242, 12, 35, new DateTime(2020, 12, 10, 12, 46, 0, 0, DateTimeKind.Utc) }, + { 157, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 186, 19, 35, new DateTime(2020, 12, 17, 1, 53, 0, 0, DateTimeKind.Utc) }, + { 158, new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), 18, 1, 36, new DateTime(2020, 12, 21, 5, 30, 0, 0, DateTimeKind.Utc) }, + { 159, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 147, 3, 36, new DateTime(2020, 12, 14, 0, 37, 0, 0, DateTimeKind.Utc) }, + { 160, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 10, 8, 36, new DateTime(2020, 12, 20, 13, 14, 0, 0, DateTimeKind.Utc) }, + { 161, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 212, 16, 36, new DateTime(2020, 12, 17, 4, 30, 0, 0, DateTimeKind.Utc) }, + { 162, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), 68, 1, 37, new DateTime(2020, 12, 16, 12, 19, 0, 0, DateTimeKind.Utc) }, + { 163, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 210, 5, 37, new DateTime(2020, 12, 12, 2, 2, 0, 0, DateTimeKind.Utc) }, + { 164, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 25, 8, 37, new DateTime(2020, 12, 13, 6, 16, 0, 0, DateTimeKind.Utc) }, + { 165, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 122, 14, 37, null }, + { 166, new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), 248, 22, 37, new DateTime(2020, 12, 12, 13, 6, 0, 0, DateTimeKind.Utc) }, + { 167, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 119, 1, 38, new DateTime(2020, 12, 20, 11, 49, 0, 0, DateTimeKind.Utc) }, + { 168, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 14, 3, 38, new DateTime(2020, 12, 13, 7, 22, 0, 0, DateTimeKind.Utc) }, + { 169, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 16, 12, 38, new DateTime(2020, 12, 19, 4, 47, 0, 0, DateTimeKind.Utc) }, + { 170, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 179, 13, 38, new DateTime(2020, 12, 20, 5, 17, 0, 0, DateTimeKind.Utc) }, + { 171, new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), 13, 16, 38, new DateTime(2020, 12, 11, 3, 41, 0, 0, DateTimeKind.Utc) }, + { 172, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 194, 18, 38, null }, + { 173, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 52, 1, 39, new DateTime(2020, 12, 15, 3, 1, 0, 0, DateTimeKind.Utc) }, + { 174, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 199, 10, 39, new DateTime(2020, 12, 17, 11, 59, 0, 0, DateTimeKind.Utc) }, + { 175, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 110, 15, 39, new DateTime(2020, 12, 19, 10, 48, 0, 0, DateTimeKind.Utc) }, + { 176, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 108, 16, 39, null }, + { 177, new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), 116, 19, 39, new DateTime(2020, 12, 21, 8, 3, 0, 0, DateTimeKind.Utc) }, + { 178, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 77, 1, 40, new DateTime(2020, 12, 19, 9, 26, 0, 0, DateTimeKind.Utc) }, + { 179, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 181, 8, 40, new DateTime(2020, 12, 13, 9, 3, 0, 0, DateTimeKind.Utc) }, + { 180, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 70, 17, 40, new DateTime(2020, 12, 18, 4, 21, 0, 0, DateTimeKind.Utc) }, + { 181, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 210, 1, 41, new DateTime(2020, 12, 18, 7, 15, 0, 0, DateTimeKind.Utc) }, + { 182, new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), 230, 7, 41, null }, + { 183, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), 169, 11, 41, new DateTime(2020, 12, 23, 6, 16, 0, 0, DateTimeKind.Utc) }, + { 184, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 61, 18, 41, new DateTime(2020, 12, 15, 12, 9, 0, 0, DateTimeKind.Utc) }, + { 185, new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), 190, 1, 42, new DateTime(2020, 12, 19, 14, 50, 0, 0, DateTimeKind.Utc) }, + { 186, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 37, 2, 42, new DateTime(2020, 12, 18, 4, 20, 0, 0, DateTimeKind.Utc) }, + { 187, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 186, 7, 42, new DateTime(2020, 12, 15, 8, 56, 0, 0, DateTimeKind.Utc) }, + { 188, new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), 184, 14, 42, null }, + { 189, new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), 239, 21, 42, new DateTime(2020, 12, 18, 6, 28, 0, 0, DateTimeKind.Utc) }, + { 190, new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), 57, 1, 43, new DateTime(2020, 12, 23, 6, 36, 0, 0, DateTimeKind.Utc) }, + { 191, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 117, 9, 43, new DateTime(2020, 12, 15, 1, 24, 0, 0, DateTimeKind.Utc) }, + { 192, new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), 42, 15, 43, null }, + { 193, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 99, 1, 44, new DateTime(2020, 12, 13, 10, 33, 0, 0, DateTimeKind.Utc) }, + { 194, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 183, 8, 44, null }, + { 195, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 204, 13, 44, new DateTime(2020, 12, 20, 9, 48, 0, 0, DateTimeKind.Utc) }, + { 196, new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), 64, 16, 44, null }, + { 197, new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), 193, 17, 44, new DateTime(2020, 12, 22, 12, 34, 0, 0, DateTimeKind.Utc) }, + { 198, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 114, 1, 45, new DateTime(2020, 12, 14, 1, 41, 0, 0, DateTimeKind.Utc) }, + { 199, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 49, 5, 45, new DateTime(2020, 12, 15, 5, 16, 0, 0, DateTimeKind.Utc) }, + { 200, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 26, 9, 45, new DateTime(2020, 12, 15, 13, 43, 0, 0, DateTimeKind.Utc) }, + { 201, new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), 178, 13, 45, new DateTime(2020, 12, 14, 5, 26, 0, 0, DateTimeKind.Utc) }, + { 202, new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), 175, 15, 45, null }, + { 203, new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), 222, 19, 45, new DateTime(2020, 12, 15, 3, 36, 0, 0, DateTimeKind.Utc) } + }); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "customers"); + + migrationBuilder.DropTable( + name: "movies"); + + migrationBuilder.DropTable( + name: "screenings"); + + migrationBuilder.DropTable( + name: "tickets"); + } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082629_Secondo.Designer.cs b/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082629_Secondo.Designer.cs new file mode 100644 index 00000000..fc5b9ab2 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082629_Secondo.Designer.cs @@ -0,0 +1,4835 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using api_cinema_challenge.Data; + +#nullable disable + +namespace api_cinema_challenge.Migrations +{ + [DbContext(typeof(CinemaContext))] + [Migration("20250828082629_Secondo")] + partial class Secondo + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("api_cinema_challenge.Models.Customer", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("Email") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Phone") + .IsRequired() + .HasColumnType("text"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("customers"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.einstein@nasa.org.us", + Name = "Serena Einstein", + Phone = "+4798654233", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winslet@aftenposten.no", + Name = "Elvis Winslet", + Phone = "+4750099200", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.hepburn@dagbladet.no", + Name = "Oprah Hepburn", + Phone = "+4712586923", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.swift@apple.com", + Name = "Audrey Swift", + Phone = "+4735146790", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.jagger@vg.no", + Name = "Cristiano Jagger", + Phone = "+4718010140", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.windsor@microsoft.com", + Name = "Donald Windsor", + Phone = "+4775818525", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.gates@tokyo.ac.jp", + Name = "Rafael Gates", + Phone = "+4793415257", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.messi@ntnu.no", + Name = "Donald Messi", + Phone = "+4798212673", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.trump@microsoft.com", + Name = "Elvis Trump", + Phone = "+4786467565", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.freeman@sydney.edu.au", + Name = "Bill Freeman", + Phone = "+4718375518", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.winslet@gov.nl", + Name = "Audrey Winslet", + Phone = "+4754980153", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.jackson@bbc.co.uk", + Name = "Timian Jackson", + Phone = "+4753968651", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.dicaprio@mit.edu", + Name = "Mick DiCaprio", + Phone = "+4765811496", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.nadal@ox.ac.uk", + Name = "Donald Nadal", + Phone = "+4748913184", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.monroe@something.com", + Name = "Donald Monroe", + Phone = "+4736671902", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@microsoft.com", + Name = "Bill Federer", + Phone = "+4757983861", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.depp@ntnu.no", + Name = "Donald Depp", + Phone = "+4797198853", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.swift@ox.ac.uk", + Name = "Barack Swift", + Phone = "+4796317752", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.ronaldo@google.com", + Name = "Messi Ronaldo", + Phone = "+4782992590", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.gates@dagbladet.no", + Name = "Donald Gates", + Phone = "+4740591714", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 21, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.winfrey@harvard.edu", + Name = "Serena Winfrey", + Phone = "+4765222914", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.winslet@uio.no", + Name = "Audrey Winslet", + Phone = "+4728539812", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.nadal@dagbladet.no", + Name = "Charles Nadal", + Phone = "+4732717007", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 24, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.einstein@wikipedia.org", + Name = "Bill Einstein", + Phone = "+4724869515", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jolie@wikipedia.org", + Name = "Leonardo Jolie", + Phone = "+4725870905", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.trump@amazon.com", + Name = "Taylor Trump", + Phone = "+4782878137", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 27, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.messi@theworld.ca", + Name = "Rafael Messi", + Phone = "+4749157626", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.depp@apple.com", + Name = "Roger Depp", + Phone = "+4731970591", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.freeman@reddit.com", + Name = "Bill Freeman", + Phone = "+4753931142", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.freeman@un.org", + Name = "Jimi Freeman", + Phone = "+4780233684", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + CreatedAt = new DateTime(2020, 11, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.jolie@reddit.com", + Name = "Rafael Jolie", + Phone = "+4733425352", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.windsor@amazon.com", + Name = "Serena Windsor", + Phone = "+4724436799", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.federer@uio.no", + Name = "Barack Federer", + Phone = "+4741083924", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.williams@vg.no", + Name = "Charles Williams", + Phone = "+4777168827", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.depp@vg.no", + Name = "Roger Depp", + Phone = "+4742944612", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.dicaprio@apple.com", + Name = "Oprah DiCaprio", + Phone = "+4769307146", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.swift@harvard.edu", + Name = "Lionel Swift", + Phone = "+4791515051", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + CreatedAt = new DateTime(2020, 10, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@uit.no", + Name = "Rafael Husveg", + Phone = "+4727333786", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.ronaldo@amazon.com", + Name = "Oprah Ronaldo", + Phone = "+4791665621", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.trump@google.com", + Name = "Messi Trump", + Phone = "+4759808962", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.nadal@gov.nl", + Name = "Kate Nadal", + Phone = "+4796731002", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.hepburn@dn.no", + Name = "Rafael Hepburn", + Phone = "+4716437790", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.freeman@mit.edu", + Name = "Audrey Freeman", + Phone = "+4756423247", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.obama@stackoverflow.com", + Name = "Audrey Obama", + Phone = "+4746604824", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.federer@vg.no", + Name = "Kate Federer", + Phone = "+4730321514", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 46, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.einstein@gov.ru", + Name = "Serena Einstein", + Phone = "+4732187286", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 47, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.jolie@something.com", + Name = "Audrey Jolie", + Phone = "+4780416108", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 48, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.depp@gov.gr", + Name = "Jimi Depp", + Phone = "+4780752954", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 49, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.winfrey@regjeringen.no", + Name = "Cristiano Winfrey", + Phone = "+4739241527", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 50, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.einstein@nrk.no", + Name = "Oprah Einstein", + Phone = "+4758624624", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 51, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.swift@uit.no", + Name = "Cristiano Swift", + Phone = "+4721969718", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 52, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.middleton@gov.us", + Name = "Mick Middleton", + Phone = "+4721577109", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 53, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.nadal@stackoverflow.com", + Name = "Donald Nadal", + Phone = "+4769091059", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 54, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@aftenposten.no", + Name = "Kate Gates", + Phone = "+4798264201", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 55, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.clinton@nmbu.no", + Name = "Taylor Clinton", + Phone = "+4728496247", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 56, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@dagbladet.no", + Name = "Leonardo Trump", + Phone = "+4731078806", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 57, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.federer@dagbladet.no", + Name = "Messi Federer", + Phone = "+4786108458", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 58, + CreatedAt = new DateTime(2020, 11, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hendrix@nasa.org.us", + Name = "Elvis Hendrix", + Phone = "+4797020160", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 59, + CreatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winfrey@reddit.com", + Name = "Elvis Winfrey", + Phone = "+4731283436", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 60, + CreatedAt = new DateTime(2020, 11, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.obama@ntnu.no", + Name = "Messi Obama", + Phone = "+4768500433", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 61, + CreatedAt = new DateTime(2020, 11, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.clinton@sydney.edu.au", + Name = "Messi Clinton", + Phone = "+4746386926", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 62, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.jackson@wikipedia.org", + Name = "Jimi Jackson", + Phone = "+4790575139", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 63, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hepburn@sydney.edu.au", + Name = "Kate Hepburn", + Phone = "+4732025597", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 64, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jackson@mit.edu", + Name = "Charles Jackson", + Phone = "+4769183730", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 65, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.ronaldo@ox.ac.uk", + Name = "Cristiano Ronaldo", + Phone = "+4750731503", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 66, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.windsor@regjeringen.no", + Name = "Lionel Windsor", + Phone = "+4788091667", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 67, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.williams@stackoverflow.com", + Name = "Cristiano Williams", + Phone = "+4726432565", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 68, + CreatedAt = new DateTime(2020, 11, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.jackson@who.int", + Name = "Mick Jackson", + Phone = "+4754834908", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 69, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.winslet@sydney.edu.au", + Name = "Donald Winslet", + Phone = "+4794787088", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 70, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.middleton@regjeringen.no", + Name = "Kate Middleton", + Phone = "+4796871563", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 71, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.nadal@un.org", + Name = "Charles Nadal", + Phone = "+4721218762", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 72, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.husveg@reddit.com", + Name = "Messi Husveg", + Phone = "+4759628976", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 73, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.federer@un.org", + Name = "Messi Federer", + Phone = "+4790749534", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 74, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.dicaprio@theworld.ca", + Name = "Messi DiCaprio", + Phone = "+4726065401", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 75, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@sydney.edu.au", + Name = "Timian Gates", + Phone = "+4771238544", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 76, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.jagger@ox.ac.uk", + Name = "Audrey Jagger", + Phone = "+4782116146", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 77, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.winfrey@gov.us", + Name = "Lionel Winfrey", + Phone = "+4722193419", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 78, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.messi@amazon.com", + Name = "Rafael Messi", + Phone = "+4743134874", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 79, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.ronaldo@google.com", + Name = "Bill Ronaldo", + Phone = "+4770005289", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 80, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.federer@microsoft.com", + Name = "Rafael Federer", + Phone = "+4781315514", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 81, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.clinton@mit.edu", + Name = "Donald Clinton", + Phone = "+4749543434", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 82, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jackson@nmbu.no", + Name = "Donald Jackson", + Phone = "+4761118531", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 83, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.swift@nmbu.no", + Name = "Oprah Swift", + Phone = "+4757247965", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 84, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.winslet@nmbu.no", + Name = "Bill Winslet", + Phone = "+4725159829", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 85, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.messi@harvard.edu", + Name = "Mick Messi", + Phone = "+4740967675", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 86, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.einstein@sydney.edu.au", + Name = "Cristiano Einstein", + Phone = "+4786923921", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 87, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.obama@gov.nl", + Name = "Lionel Obama", + Phone = "+4791209991", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 88, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.einstein@microsoft.com", + Name = "Kate Einstein", + Phone = "+4718948809", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 89, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.nadal@mit.edu", + Name = "Kate Nadal", + Phone = "+4711566291", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 90, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.obama@vg.no", + Name = "Taylor Obama", + Phone = "+4710308065", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 91, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.ronaldo@ntnu.no", + Name = "Oprah Ronaldo", + Phone = "+4741344498", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 92, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.depp@sydney.edu.au", + Name = "Cristiano Depp", + Phone = "+4742656755", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 93, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@apple.com", + Name = "Bill Federer", + Phone = "+4725848809", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 94, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.clinton@google.com", + Name = "Mick Clinton", + Phone = "+4769471381", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 95, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.depp@uit.no", + Name = "Mick Depp", + Phone = "+4794558038", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 96, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.trump@something.com", + Name = "Mick Trump", + Phone = "+4782164706", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 97, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.federer@google.com", + Name = "Barack Federer", + Phone = "+4781495514", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 98, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.husveg@stackoverflow.com", + Name = "Bill Husveg", + Phone = "+4724025822", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 99, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jackson@something.com", + Name = "Leonardo Jackson", + Phone = "+4720007993", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 100, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.windsor@tesla.com", + Name = "Kate Windsor", + Phone = "+4779990851", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 101, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.federer@gov.gr", + Name = "Charles Federer", + Phone = "+4763148363", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 102, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.obama@aftenposten.no", + Name = "Donald Obama", + Phone = "+4755149875", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 103, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.clinton@vg.no", + Name = "Roger Clinton", + Phone = "+4784083446", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 104, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.depp@sydney.edu.au", + Name = "Jimi Depp", + Phone = "+4725450309", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 105, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.presley@nasa.org.us", + Name = "Messi Presley", + Phone = "+4786155121", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 106, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.nadal@sydney.edu.au", + Name = "Cristiano Nadal", + Phone = "+4777987067", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 107, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@gov.gr", + Name = "Mick Hendrix", + Phone = "+4776568653", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 108, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@gov.us", + Name = "Rafael Husveg", + Phone = "+4797198747", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 109, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.presley@un.org", + Name = "Taylor Presley", + Phone = "+4749341027", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 110, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.swift@nrk.no", + Name = "Roger Swift", + Phone = "+4713816113", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 111, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.swift@nmbu.no", + Name = "Donald Swift", + Phone = "+4772873967", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 112, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.freeman@uio.no", + Name = "Oprah Freeman", + Phone = "+4723625072", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 113, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@ox.ac.uk", + Name = "Rafael Husveg", + Phone = "+4742570606", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 114, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.winslet@google.com", + Name = "Barack Winslet", + Phone = "+4760419448", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 115, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.monroe@gov.ru", + Name = "Barack Monroe", + Phone = "+4786987482", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 116, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@mit.edu", + Name = "Leonardo Trump", + Phone = "+4790022318", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 117, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.freeman@nasa.org.us", + Name = "Serena Freeman", + Phone = "+4725135140", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 118, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.jagger@microsoft.com", + Name = "Mick Jagger", + Phone = "+4798688366", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 119, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.obama@dagbladet.no", + Name = "Kate Obama", + Phone = "+4729523943", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 120, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.clinton@stackoverflow.com", + Name = "Leonardo Clinton", + Phone = "+4761335158", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 121, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.presley@uit.no", + Name = "Mick Presley", + Phone = "+4793911593", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 122, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.gates@dagbladet.no", + Name = "Mick Gates", + Phone = "+4742098309", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 123, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.husveg@gov.nl", + Name = "Donald Husveg", + Phone = "+4744402784", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 124, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.nadal@tesla.com", + Name = "Oprah Nadal", + Phone = "+4711821095", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 125, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@ntnu.no", + Name = "Leonardo Trump", + Phone = "+4753659393", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 126, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.jolie@dn.no", + Name = "Lionel Jolie", + Phone = "+4766011799", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 127, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.ronaldo@regjeringen.no", + Name = "Taylor Ronaldo", + Phone = "+4716034399", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 128, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.gates@mit.edu", + Name = "Messi Gates", + Phone = "+4726399068", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 129, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jolie@stackoverflow.com", + Name = "Leonardo Jolie", + Phone = "+4785362268", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 130, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.jolie@stackoverflow.com", + Name = "Barack Jolie", + Phone = "+4796329523", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 131, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@something.com", + Name = "Timian Gates", + Phone = "+4743227372", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 132, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.husveg@nrk.no", + Name = "Timian Husveg", + Phone = "+4753483733", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 133, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.freeman@amazon.com", + Name = "Timian Freeman", + Phone = "+4787189460", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 134, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.trump@bbc.co.uk", + Name = "Donald Trump", + Phone = "+4764181429", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 135, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@amazon.com", + Name = "Oprah Jagger", + Phone = "+4775511912", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 136, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.jolie@dn.no", + Name = "Roger Jolie", + Phone = "+4733478038", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 137, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.trump@who.int", + Name = "Jimi Trump", + Phone = "+4757111945", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 138, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.winslet@dn.no", + Name = "Kate Winslet", + Phone = "+4729021342", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 139, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.husveg@stackoverflow.com", + Name = "Messi Husveg", + Phone = "+4776867537", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 140, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.dicaprio@mit.edu", + Name = "Taylor DiCaprio", + Phone = "+4769984935", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 141, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.swift@theworld.ca", + Name = "Rafael Swift", + Phone = "+4779376969", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 142, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.depp@something.com", + Name = "Messi Depp", + Phone = "+4789381758", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 143, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.husveg@ox.ac.uk", + Name = "Cristiano Husveg", + Phone = "+4795356763", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 144, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@tesla.com", + Name = "Kate Gates", + Phone = "+4731023984", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 145, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@theworld.ca", + Name = "Timian Gates", + Phone = "+4792868122", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 146, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hendrix@tesla.com", + Name = "Kate Hendrix", + Phone = "+4773179510", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 147, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.presley@microsoft.com", + Name = "Leonardo Presley", + Phone = "+4721249323", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 148, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.jagger@regjeringen.no", + Name = "Messi Jagger", + Phone = "+4777383815", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 149, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.ronaldo@uit.no", + Name = "Taylor Ronaldo", + Phone = "+4739168939", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 150, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.trump@nrk.no", + Name = "Taylor Trump", + Phone = "+4757236844", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 151, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.jackson@aftenposten.no", + Name = "Timian Jackson", + Phone = "+4747442491", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 152, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@dn.no", + Name = "Bill Federer", + Phone = "+4773741695", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 153, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.winslet@nrk.no", + Name = "Roger Winslet", + Phone = "+4780917391", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 154, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@nasa.org.us", + Name = "Charles Jolie", + Phone = "+4768143256", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 155, + CreatedAt = new DateTime(2020, 11, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.middleton@dn.no", + Name = "Kate Middleton", + Phone = "+4746026165", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 156, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.clinton@apple.com", + Name = "Charles Clinton", + Phone = "+4749444494", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 157, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.federer@microsoft.com", + Name = "Timian Federer", + Phone = "+4775070583", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 158, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.depp@ox.ac.uk", + Name = "Timian Depp", + Phone = "+4792623051", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 159, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jackson@nmbu.no", + Name = "Donald Jackson", + Phone = "+4792943294", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 160, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@bbc.co.uk", + Name = "Charles Jolie", + Phone = "+4713572468", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 161, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.ronaldo@amazon.com", + Name = "Jimi Ronaldo", + Phone = "+4729363061", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 162, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.winfrey@microsoft.com", + Name = "Messi Winfrey", + Phone = "+4791858630", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 163, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hendrix@nmbu.no", + Name = "Kate Hendrix", + Phone = "+4734057901", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 164, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.middleton@theworld.ca", + Name = "Oprah Middleton", + Phone = "+4799913874", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 165, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.middleton@who.int", + Name = "Oprah Middleton", + Phone = "+4783907296", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 166, + CreatedAt = new DateTime(2020, 10, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.presley@nrk.no", + Name = "Messi Presley", + Phone = "+4712410015", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 167, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.gates@vg.no", + Name = "Cristiano Gates", + Phone = "+4787999809", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 168, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.jagger@gov.nl", + Name = "Serena Jagger", + Phone = "+4769339223", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 169, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@tesla.com", + Name = "Kate Gates", + Phone = "+4783633084", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 170, + CreatedAt = new DateTime(2020, 10, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.obama@ntnu.no", + Name = "Bill Obama", + Phone = "+4778618509", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 171, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.monroe@gov.nl", + Name = "Messi Monroe", + Phone = "+4777149234", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 172, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.windsor@sydney.edu.au", + Name = "Rafael Windsor", + Phone = "+4774253974", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 173, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.husveg@vg.no", + Name = "Kate Husveg", + Phone = "+4712262036", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 174, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.hendrix@un.org", + Name = "Jimi Hendrix", + Phone = "+4723594804", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 175, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.jagger@reddit.com", + Name = "Rafael Jagger", + Phone = "+4769734141", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 176, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.dicaprio@nasa.org.us", + Name = "Kate DiCaprio", + Phone = "+4730476680", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 177, + CreatedAt = new DateTime(2020, 11, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.winslet@ntnu.no", + Name = "Timian Winslet", + Phone = "+4746378599", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 178, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@amazon.com", + Name = "Oprah Jagger", + Phone = "+4714577884", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 179, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@amazon.com", + Name = "Charles Jolie", + Phone = "+4721243178", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 180, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.hepburn@nasa.org.us", + Name = "Rafael Hepburn", + Phone = "+4744499745", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 181, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hepburn@openai.com", + Name = "Elvis Hepburn", + Phone = "+4783117733", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 182, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.hendrix@openai.com", + Name = "Messi Hendrix", + Phone = "+4723747134", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 183, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.clinton@nmbu.no", + Name = "Mick Clinton", + Phone = "+4747052865", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 184, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.jagger@gov.ru", + Name = "Taylor Jagger", + Phone = "+4714589778", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 185, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.hepburn@dagbladet.no", + Name = "Jimi Hepburn", + Phone = "+4760889722", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 186, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.winslet@un.org", + Name = "Charles Winslet", + Phone = "+4727804466", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 187, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.messi@harvard.edu", + Name = "Taylor Messi", + Phone = "+4760033392", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 188, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.middleton@gov.ru", + Name = "Leonardo Middleton", + Phone = "+4788377888", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 189, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.obama@reddit.com", + Name = "Donald Obama", + Phone = "+4752993643", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 190, + CreatedAt = new DateTime(2020, 11, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.windsor@sydney.edu.au", + Name = "Donald Windsor", + Phone = "+4778018462", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 191, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.freeman@theworld.ca", + Name = "Rafael Freeman", + Phone = "+4731492399", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 192, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.nadal@openai.com", + Name = "Mick Nadal", + Phone = "+4726179198", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 193, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jagger@dn.no", + Name = "Charles Jagger", + Phone = "+4786749070", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 194, + CreatedAt = new DateTime(2020, 11, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.williams@regjeringen.no", + Name = "Oprah Williams", + Phone = "+4785560056", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 195, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.hendrix@gov.us", + Name = "Messi Hendrix", + Phone = "+4788004459", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 196, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.federer@gov.nl", + Name = "Taylor Federer", + Phone = "+4795714823", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 197, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.trump@amazon.com", + Name = "Cristiano Trump", + Phone = "+4756871101", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 198, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.depp@regjeringen.no", + Name = "Cristiano Depp", + Phone = "+4794243831", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 199, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hepburn@sydney.edu.au", + Name = "Mick Hepburn", + Phone = "+4768379350", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 200, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@uit.no", + Name = "Oprah Jagger", + Phone = "+4774908337", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 201, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.einstein@tesla.com", + Name = "Jimi Einstein", + Phone = "+4768730068", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 202, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.monroe@mit.edu", + Name = "Messi Monroe", + Phone = "+4754049485", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 203, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.messi@nmbu.no", + Name = "Barack Messi", + Phone = "+4787360423", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 204, + CreatedAt = new DateTime(2020, 10, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.gates@something.com", + Name = "Barack Gates", + Phone = "+4713260319", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 205, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.obama@stackoverflow.com", + Name = "Messi Obama", + Phone = "+4732311046", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 206, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.nadal@wikipedia.org", + Name = "Lionel Nadal", + Phone = "+4764701764", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 207, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.nadal@stackoverflow.com", + Name = "Jimi Nadal", + Phone = "+4728919645", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 208, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.windsor@mit.edu", + Name = "Leonardo Windsor", + Phone = "+4733291487", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 209, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.dicaprio@ox.ac.uk", + Name = "Mick DiCaprio", + Phone = "+4731719366", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 210, + CreatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.williams@wikipedia.org", + Name = "Cristiano Williams", + Phone = "+4734668408", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 211, + CreatedAt = new DateTime(2020, 11, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.gates@apple.com", + Name = "Charles Gates", + Phone = "+4715249439", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 212, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.obama@dagbladet.no", + Name = "Roger Obama", + Phone = "+4754594896", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 213, + CreatedAt = new DateTime(2020, 10, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.ronaldo@tesla.com", + Name = "Leonardo Ronaldo", + Phone = "+4717295123", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 214, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.ronaldo@tesla.com", + Name = "Cristiano Ronaldo", + Phone = "+4743874215", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 215, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.swift@openai.com", + Name = "Timian Swift", + Phone = "+4763969684", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 216, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.monroe@harvard.edu", + Name = "Rafael Monroe", + Phone = "+4784375644", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 217, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jolie@stackoverflow.com", + Name = "Donald Jolie", + Phone = "+4772151502", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 218, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.federer@microsoft.com", + Name = "Oprah Federer", + Phone = "+4791939721", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 219, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.jagger@aftenposten.no", + Name = "Bill Jagger", + Phone = "+4778911660", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 220, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.middleton@dagbladet.no", + Name = "Messi Middleton", + Phone = "+4722464563", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 221, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hepburn@amazon.com", + Name = "Elvis Hepburn", + Phone = "+4735338366", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 222, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.jackson@stackoverflow.com", + Name = "Barack Jackson", + Phone = "+4773026146", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 223, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@gov.ru", + Name = "Mick Hendrix", + Phone = "+4725615535", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 224, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.gates@apple.com", + Name = "Oprah Gates", + Phone = "+4799942352", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 225, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.jackson@regjeringen.no", + Name = "Jimi Jackson", + Phone = "+4721734511", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 226, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.presley@gov.ru", + Name = "Lionel Presley", + Phone = "+4712334915", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 227, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@openai.com", + Name = "Mick Hendrix", + Phone = "+4750872119", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 228, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.middleton@uit.no", + Name = "Roger Middleton", + Phone = "+4762484064", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 229, + CreatedAt = new DateTime(2020, 11, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.jagger@who.int", + Name = "Serena Jagger", + Phone = "+4787783850", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 230, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winslet@mit.edu", + Name = "Elvis Winslet", + Phone = "+4756369336", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 231, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.gates@apple.com", + Name = "Barack Gates", + Phone = "+4799336168", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 232, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.winfrey@sydney.edu.au", + Name = "Lionel Winfrey", + Phone = "+4787214840", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 233, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.gates@reddit.com", + Name = "Rafael Gates", + Phone = "+4797465413", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 234, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.ronaldo@stackoverflow.com", + Name = "Kate Ronaldo", + Phone = "+4713662516", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 235, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.winslet@nmbu.no", + Name = "Serena Winslet", + Phone = "+4796131717", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 236, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.presley@uio.no", + Name = "Barack Presley", + Phone = "+4797258217", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 237, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.jolie@openai.com", + Name = "Kate Jolie", + Phone = "+4796395559", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 238, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.swift@uit.no", + Name = "Kate Swift", + Phone = "+4798271334", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 239, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.dicaprio@nmbu.no", + Name = "Leonardo DiCaprio", + Phone = "+4778889329", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 240, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.winslet@wikipedia.org", + Name = "Cristiano Winslet", + Phone = "+4724377752", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 241, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.swift@harvard.edu", + Name = "Messi Swift", + Phone = "+4799525339", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 242, + CreatedAt = new DateTime(2020, 10, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.nadal@gov.us", + Name = "Rafael Nadal", + Phone = "+4721403869", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 243, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.monroe@something.com", + Name = "Cristiano Monroe", + Phone = "+4785649771", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 244, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.messi@apple.com", + Name = "Mick Messi", + Phone = "+4716903521", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 245, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.einstein@mit.edu", + Name = "Leonardo Einstein", + Phone = "+4790859687", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 246, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.freeman@un.org", + Name = "Cristiano Freeman", + Phone = "+4743791572", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 247, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.swift@theworld.ca", + Name = "Leonardo Swift", + Phone = "+4790624988", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 248, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.depp@amazon.com", + Name = "Bill Depp", + Phone = "+4753167607", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 249, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.depp@wikipedia.org", + Name = "Rafael Depp", + Phone = "+4766839558", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Movie", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("Rating") + .IsRequired() + .HasColumnType("text"); + + b.Property("RuntimeMins") + .HasColumnType("integer"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("movies"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", + Rating = "9.3", + RuntimeMins = 142, + Title = "The Shawshank Redemption", + UpdatedAt = new DateTime(2019, 8, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son.", + Rating = "9.2", + RuntimeMins = 175, + Title = "The Godfather", + UpdatedAt = new DateTime(2019, 9, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "When the menace known as the Joker wreaks havoc and chaos on Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.", + Rating = "9.1", + RuntimeMins = 252, + Title = "The Dark Knight" + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The lives of two mob hitmen, a boxer, a gangster's wife, and a pair of diner bandits intertwine in four tales of violence and redemption.", + Rating = "8.8", + RuntimeMins = 254, + Title = "Pulp Fiction", + UpdatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The presidencies of Kennedy and Johnson, the Vietnam War, and other history unfold through the perspective of an Alabama man with an IQ of 75.", + Rating = "8.8", + RuntimeMins = 242, + Title = "Forrest Gump", + UpdatedAt = new DateTime(2018, 3, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A thief who steals corporate secrets through dream-sharing technology is given the inverse task of planting an idea into the mind of a CEO.", + Rating = "8.8", + RuntimeMins = 248, + Title = "Inception", + UpdatedAt = new DateTime(2020, 2, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into something much more.", + Rating = "8.8", + RuntimeMins = 239, + Title = "Fight Club", + UpdatedAt = new DateTime(2019, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.", + Rating = "8.7", + RuntimeMins = 236, + Title = "The Matrix", + UpdatedAt = new DateTime(2020, 6, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.", + Rating = "8.7", + RuntimeMins = 269, + Title = "Interstellar", + UpdatedAt = new DateTime(2020, 6, 11, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.", + Rating = "8.5", + RuntimeMins = 232, + Title = "Parasite", + UpdatedAt = new DateTime(2018, 9, 3, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A meek Hobbit sets out on a journey to destroy a powerful ring and save Middle-earth from the Dark Lord Sauron.", + Rating = "8.8", + RuntimeMins = 178, + Title = "The Lord of the Rings: The Fellowship of the Ring", + UpdatedAt = new DateTime(2018, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The fellowship continues their fight against Sauron's forces while Frodo and Sam draw closer to Mordor.", + Rating = "8.7", + RuntimeMins = 179, + Title = "The Lord of the Rings: The Two Towers", + UpdatedAt = new DateTime(2018, 3, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The final battle for Middle-earth begins as Frodo and Sam reach the heart of Mordor to destroy the One Ring.", + Rating = "8.9", + RuntimeMins = 201, + Title = "The Lord of the Rings: The Return of the King" + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A former Roman general seeks vengeance against the corrupt emperor who murdered his family and sent him into slavery.", + Rating = "8.5", + RuntimeMins = 155, + Title = "Gladiator", + UpdatedAt = new DateTime(2019, 6, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Simba, a young lion prince, flees his kingdom after the murder of his father but eventually learns the true meaning of responsibility and bravery.", + Rating = "8.5", + RuntimeMins = 88, + Title = "The Lion King" + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Two rival magicians engage in a bitter competition, obsessively trying to outdo each other with dangerous tricks and illusions.", + Rating = "8.5", + RuntimeMins = 130, + Title = "The Prestige", + UpdatedAt = new DateTime(2019, 9, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A young drummer enrolls at a music conservatory and struggles under the extreme demands of a ruthless instructor.", + Rating = "8.5", + RuntimeMins = 106, + Title = "Whiplash", + UpdatedAt = new DateTime(2019, 8, 15, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "An undercover cop and a mole in the police force try to identify each other while infiltrating an Irish gang in Boston.", + Rating = "8.5", + RuntimeMins = 151, + Title = "The Departed", + UpdatedAt = new DateTime(2019, 6, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A failed comedian descends into madness and emerges as the infamous criminal mastermind in Gotham City.", + Rating = "8.4", + RuntimeMins = 122, + Title = "Joker", + UpdatedAt = new DateTime(2019, 1, 11, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The surviving members of the Avengers work together to undo the destruction caused by Thanos and restore balance to the universe.", + Rating = "8.4", + RuntimeMins = 181, + Title = "Avengers: Endgame", + UpdatedAt = new DateTime(2018, 4, 30, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Screening", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Capacity") + .HasColumnType("integer"); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("MovieId") + .HasColumnType("integer"); + + b.Property("ScreenNumber") + .HasColumnType("integer"); + + b.Property("StartsAt") + .HasColumnType("timestamp with time zone"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("screenings"); + + b.HasData( + new + { + Id = 1, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 1, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 2, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 3, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 3, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 3, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 4, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 5, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 5, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 5, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 5, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 6, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 6, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 7, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 14, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 7, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 7, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 8, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 8, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 8, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 9, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 9, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 21, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 10, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 11, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 11, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 24, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 11, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 12, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 14, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 27, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 14, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 14, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 14, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 16, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 16, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 16, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 16, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 17, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 17, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 17, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 17, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 18, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 18, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 18, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 18, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 19, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 19, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 20, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 20, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Ticket", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("CustomerId") + .HasColumnType("integer"); + + b.Property("NumSeats") + .HasColumnType("integer"); + + b.Property("ScreeningId") + .HasColumnType("integer"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("tickets"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 204, + NumSeats = 1, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 12, 7, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 10, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 10, 11, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 14, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 10, 12, 9, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 174, + NumSeats = 15, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 8, 1, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 118, + NumSeats = 20, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 12, 10, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 60, + NumSeats = 1, + ScreeningId = 2, + UpdatedAt = new DateTime(2020, 12, 14, 9, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 96, + NumSeats = 7, + ScreeningId = 2, + UpdatedAt = new DateTime(2020, 12, 11, 12, 12, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 195, + NumSeats = 12, + ScreeningId = 2 + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 136, + NumSeats = 17, + ScreeningId = 2 + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 196, + NumSeats = 1, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 21, 11, 11, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 87, + NumSeats = 9, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 21, 10, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 167, + NumSeats = 17, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 14, 11, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 23, + NumSeats = 1, + ScreeningId = 4 + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 93, + NumSeats = 2, + ScreeningId = 4 + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 163, + NumSeats = 4, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 12, 3, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 166, + NumSeats = 7, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 12, 5, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 12, + ScreeningId = 4 + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 10, + NumSeats = 13, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 11, 2, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 86, + NumSeats = 22, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 15, 8, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 8, + NumSeats = 23, + ScreeningId = 4 + }, + new + { + Id = 21, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 144, + NumSeats = 1, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 11, 3, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 102, + NumSeats = 9, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 16, 0, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 16, + ScreeningId = 5 + }, + new + { + Id = 24, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 174, + NumSeats = 19, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 15, 10, 10, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 134, + NumSeats = 1, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 20, 14, 35, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 218, + NumSeats = 8, + ScreeningId = 6 + }, + new + { + Id = 27, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 132, + NumSeats = 13, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 14, 8, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 16, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 19, 9, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 81, + NumSeats = 1, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 8, 8, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 80, + NumSeats = 3, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 8, 0, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 170, + NumSeats = 12, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 14, 8, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 199, + NumSeats = 17, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 9, 12, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 22, + NumSeats = 19, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 14, 9, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 171, + NumSeats = 1, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 17, 1, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 128, + NumSeats = 4, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 11, 8, 47, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 46, + NumSeats = 12, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 12, 9, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 112, + NumSeats = 16, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 14, 11, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 72, + NumSeats = 1, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 10, 9, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 106, + NumSeats = 6, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 16, 13, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 104, + NumSeats = 15, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 11, 11, 15, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 100, + NumSeats = 1, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 10, 4, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 157, + NumSeats = 9, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 14, 4, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 107, + NumSeats = 18, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 15, 12, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 20, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 15, 14, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 24, + NumSeats = 1, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 12, 2, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 46, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 153, + NumSeats = 2, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 14, 8, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 47, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 196, + NumSeats = 4, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 10, 12, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 48, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 137, + NumSeats = 6, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 18, 8, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 49, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 8, + NumSeats = 7, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 12, 13, 18, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 50, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 160, + NumSeats = 10, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 19, 1, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 51, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 158, + NumSeats = 13, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 19, 4, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 52, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 17, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 18, 9, 6, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 53, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 1, + ScreeningId = 12 + }, + new + { + Id = 54, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 19, + NumSeats = 5, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 16, 11, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 55, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 14, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 15, 14, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 56, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 19, + ScreeningId = 12 + }, + new + { + Id = 57, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 180, + NumSeats = 23, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 15, 6, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 58, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 128, + NumSeats = 1, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 13, 4, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 59, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 9, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 11, 13, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 60, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 185, + NumSeats = 18, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 9, 10, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 61, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 188, + NumSeats = 1, + ScreeningId = 14 + }, + new + { + Id = 62, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 50, + NumSeats = 2, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 10, 6, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 63, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 58, + NumSeats = 7, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 13, 1, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 64, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 162, + NumSeats = 16, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 12, 6, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 65, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 19, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 11, 6, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 66, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 123, + NumSeats = 1, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 9, 12, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 67, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 75, + NumSeats = 3, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 8, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 68, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 36, + NumSeats = 5, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 3, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 69, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 211, + NumSeats = 14, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 8, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 70, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 84, + NumSeats = 1, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 18, 12, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 71, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 17, + NumSeats = 10, + ScreeningId = 16 + }, + new + { + Id = 72, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 147, + NumSeats = 11, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 17, 0, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 73, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 17, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 18, 12, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 74, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 20, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 13, 14, 59, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 75, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 151, + NumSeats = 1, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 15, 2, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 76, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 35, + NumSeats = 8, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 18, 13, 11, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 77, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 10, + ScreeningId = 17 + }, + new + { + Id = 78, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 17, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 11, 10, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 79, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 51, + NumSeats = 22, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 12, 7, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 80, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 115, + NumSeats = 1, + ScreeningId = 18, + UpdatedAt = new DateTime(2020, 12, 16, 10, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 81, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 197, + NumSeats = 7, + ScreeningId = 18, + UpdatedAt = new DateTime(2020, 12, 13, 12, 17, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 82, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 240, + NumSeats = 14, + ScreeningId = 18 + }, + new + { + Id = 83, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 1, + ScreeningId = 19 + }, + new + { + Id = 84, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 21, + NumSeats = 5, + ScreeningId = 19 + }, + new + { + Id = 85, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 101, + NumSeats = 11, + ScreeningId = 19, + UpdatedAt = new DateTime(2020, 12, 14, 11, 25, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 86, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 16, + ScreeningId = 19 + }, + new + { + Id = 87, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 140, + NumSeats = 1, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 19, 1, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 88, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 218, + NumSeats = 8, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 14, 4, 12, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 89, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 15, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 17, 9, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 90, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 242, + NumSeats = 1, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 18, 9, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 91, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 121, + NumSeats = 2, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 13, 11, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 92, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 182, + NumSeats = 6, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 15, 1, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 93, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 26, + NumSeats = 9, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 20, 2, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 94, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 172, + NumSeats = 13, + ScreeningId = 21 + }, + new + { + Id = 95, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 149, + NumSeats = 19, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 19, 8, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 96, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 198, + NumSeats = 1, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 14, 12, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 97, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 119, + NumSeats = 4, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 20, 3, 25, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 98, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 51, + NumSeats = 11, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 12, 0, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 99, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 13, + NumSeats = 14, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 13, 5, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 100, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 159, + NumSeats = 1, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 15, 3, 51, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 101, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 38, + NumSeats = 2, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 12, 1, 37, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 102, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 209, + NumSeats = 11, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 11, 14, 27, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 103, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 184, + NumSeats = 12, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 14, 6, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 104, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 144, + NumSeats = 14, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 6, 11, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 105, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 206, + NumSeats = 1, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 14, 9, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 106, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 15, + NumSeats = 9, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 13, 9, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 107, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 145, + NumSeats = 15, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 16, 0, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 108, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 27, + NumSeats = 20, + ScreeningId = 24 + }, + new + { + Id = 109, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 1, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 18, 8, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 110, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 167, + NumSeats = 8, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 19, 8, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 111, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 173, + NumSeats = 14, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 18, 2, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 112, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 19, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 19, 7, 8, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 113, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 180, + NumSeats = 1, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 11, 4, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 114, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 123, + NumSeats = 8, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 8, 6, 18, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 115, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 138, + NumSeats = 16, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 13, 11, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 116, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 173, + NumSeats = 21, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 12, 12, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 117, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 236, + NumSeats = 1, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 14, 1, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 118, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 212, + NumSeats = 9, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 13, 6, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 119, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 142, + NumSeats = 15, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 10, 7, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 120, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 139, + NumSeats = 1, + ScreeningId = 28, + UpdatedAt = new DateTime(2020, 12, 13, 1, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 121, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 195, + NumSeats = 10, + ScreeningId = 28, + UpdatedAt = new DateTime(2020, 12, 13, 12, 42, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 122, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 194, + NumSeats = 19, + ScreeningId = 28 + }, + new + { + Id = 123, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 1, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 18, 3, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 124, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 178, + NumSeats = 3, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 21, 0, 33, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 125, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 160, + NumSeats = 4, + ScreeningId = 29 + }, + new + { + Id = 126, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 78, + NumSeats = 12, + ScreeningId = 29 + }, + new + { + Id = 127, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 37, + NumSeats = 16, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 19, 12, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 128, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 104, + NumSeats = 17, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 14, 14, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 129, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 1, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 15, 8, 57, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 130, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 91, + NumSeats = 2, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 12, 13, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 131, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 171, + NumSeats = 3, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 15, 3, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 132, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 48, + NumSeats = 10, + ScreeningId = 30 + }, + new + { + Id = 133, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 25, + NumSeats = 13, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 9, 8, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 134, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 168, + NumSeats = 17, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 10, 10, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 135, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 152, + NumSeats = 1, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 8, 4, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 136, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 202, + NumSeats = 6, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 7, 8, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 137, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 29, + NumSeats = 10, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 8, 12, 10, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 138, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 211, + NumSeats = 17, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 7, 12, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 139, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 175, + NumSeats = 1, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 15, 9, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 140, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 70, + NumSeats = 3, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 14, 14, 8, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 141, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 244, + NumSeats = 8, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 12, 8, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 142, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 44, + NumSeats = 13, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 8, 10, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 143, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 59, + NumSeats = 1, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 9, 4, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 144, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 4, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 9, 10, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 145, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 112, + NumSeats = 13, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 17, 0, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 146, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 169, + NumSeats = 15, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 14, 9, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 147, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 69, + NumSeats = 20, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 13, 10, 13, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 148, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 62, + NumSeats = 1, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 13, 10, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 149, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 188, + NumSeats = 2, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 20, 2, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 150, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 177, + NumSeats = 7, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 15, 5, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 151, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 9, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 14, 1, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 152, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 102, + NumSeats = 18, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 18, 4, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 153, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 20, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 13, 12, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 154, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 66, + NumSeats = 1, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 15, 7, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 155, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 41, + NumSeats = 5, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 11, 9, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 156, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 242, + NumSeats = 12, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 10, 12, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 157, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 186, + NumSeats = 19, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 17, 1, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 158, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 18, + NumSeats = 1, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 21, 5, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 159, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 147, + NumSeats = 3, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 14, 0, 37, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 160, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 10, + NumSeats = 8, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 20, 13, 14, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 161, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 212, + NumSeats = 16, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 17, 4, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 162, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 68, + NumSeats = 1, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 16, 12, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 163, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 210, + NumSeats = 5, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 12, 2, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 164, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 25, + NumSeats = 8, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 13, 6, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 165, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 14, + ScreeningId = 37 + }, + new + { + Id = 166, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 22, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 12, 13, 6, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 167, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 119, + NumSeats = 1, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 20, 11, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 168, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 14, + NumSeats = 3, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 13, 7, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 169, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 16, + NumSeats = 12, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 19, 4, 47, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 170, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 179, + NumSeats = 13, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 20, 5, 17, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 171, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 13, + NumSeats = 16, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 11, 3, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 172, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 194, + NumSeats = 18, + ScreeningId = 38 + }, + new + { + Id = 173, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 52, + NumSeats = 1, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 15, 3, 1, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 174, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 199, + NumSeats = 10, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 17, 11, 59, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 175, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 110, + NumSeats = 15, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 19, 10, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 176, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 108, + NumSeats = 16, + ScreeningId = 39 + }, + new + { + Id = 177, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 116, + NumSeats = 19, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 21, 8, 3, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 178, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 77, + NumSeats = 1, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 19, 9, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 179, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 181, + NumSeats = 8, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 13, 9, 3, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 180, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 70, + NumSeats = 17, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 18, 4, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 181, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 210, + NumSeats = 1, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 18, 7, 15, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 182, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 230, + NumSeats = 7, + ScreeningId = 41 + }, + new + { + Id = 183, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 169, + NumSeats = 11, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 23, 6, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 184, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 61, + NumSeats = 18, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 15, 12, 9, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 185, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 190, + NumSeats = 1, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 19, 14, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 186, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 37, + NumSeats = 2, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 18, 4, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 187, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 186, + NumSeats = 7, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 15, 8, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 188, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 184, + NumSeats = 14, + ScreeningId = 42 + }, + new + { + Id = 189, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 239, + NumSeats = 21, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 18, 6, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 190, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 57, + NumSeats = 1, + ScreeningId = 43, + UpdatedAt = new DateTime(2020, 12, 23, 6, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 191, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 117, + NumSeats = 9, + ScreeningId = 43, + UpdatedAt = new DateTime(2020, 12, 15, 1, 24, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 192, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 42, + NumSeats = 15, + ScreeningId = 43 + }, + new + { + Id = 193, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 99, + NumSeats = 1, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 13, 10, 33, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 194, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 183, + NumSeats = 8, + ScreeningId = 44 + }, + new + { + Id = 195, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 204, + NumSeats = 13, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 20, 9, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 196, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 64, + NumSeats = 16, + ScreeningId = 44 + }, + new + { + Id = 197, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 193, + NumSeats = 17, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 22, 12, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 198, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 114, + NumSeats = 1, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 14, 1, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 199, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 49, + NumSeats = 5, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 5, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 200, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 26, + NumSeats = 9, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 13, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 201, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 178, + NumSeats = 13, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 14, 5, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 202, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 175, + NumSeats = 15, + ScreeningId = 45 + }, + new + { + Id = 203, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 222, + NumSeats = 19, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 3, 36, 0, 0, DateTimeKind.Utc) + }); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082629_Secondo.cs b/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082629_Secondo.cs new file mode 100644 index 00000000..15e056f1 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Migrations/20250828082629_Secondo.cs @@ -0,0 +1,648 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace api_cinema_challenge.Migrations +{ + /// + public partial class Secondo : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 1, + column: "MovieId", + value: 1); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 2, + column: "MovieId", + value: 2); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 3, + column: "MovieId", + value: 3); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 4, + column: "MovieId", + value: 3); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 5, + column: "MovieId", + value: 3); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 6, + column: "MovieId", + value: 4); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 7, + column: "MovieId", + value: 5); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 8, + column: "MovieId", + value: 5); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 9, + column: "MovieId", + value: 5); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 10, + column: "MovieId", + value: 5); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 11, + column: "MovieId", + value: 6); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 12, + column: "MovieId", + value: 6); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 13, + column: "MovieId", + value: 7); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 14, + column: "MovieId", + value: 7); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 15, + column: "MovieId", + value: 7); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 16, + column: "MovieId", + value: 8); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 17, + column: "MovieId", + value: 8); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 18, + column: "MovieId", + value: 8); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 19, + column: "MovieId", + value: 9); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 20, + column: "MovieId", + value: 9); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 21, + column: "MovieId", + value: 10); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 22, + column: "MovieId", + value: 11); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 23, + column: "MovieId", + value: 11); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 24, + column: "MovieId", + value: 11); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 25, + column: "MovieId", + value: 12); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 26, + column: "MovieId", + value: 14); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 27, + column: "MovieId", + value: 14); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 28, + column: "MovieId", + value: 14); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 29, + column: "MovieId", + value: 14); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 30, + column: "MovieId", + value: 16); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 31, + column: "MovieId", + value: 16); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 32, + column: "MovieId", + value: 16); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 33, + column: "MovieId", + value: 16); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 34, + column: "MovieId", + value: 17); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 35, + column: "MovieId", + value: 17); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 36, + column: "MovieId", + value: 17); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 37, + column: "MovieId", + value: 17); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 38, + column: "MovieId", + value: 18); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 39, + column: "MovieId", + value: 18); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 40, + column: "MovieId", + value: 18); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 41, + column: "MovieId", + value: 18); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 42, + column: "MovieId", + value: 19); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 43, + column: "MovieId", + value: 19); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 44, + column: "MovieId", + value: 20); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 45, + column: "MovieId", + value: 20); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 1, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 2, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 3, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 4, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 5, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 6, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 7, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 8, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 9, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 10, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 11, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 12, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 13, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 14, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 15, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 16, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 17, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 18, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 19, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 20, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 21, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 22, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 23, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 24, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 25, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 26, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 27, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 28, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 29, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 30, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 31, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 32, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 33, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 34, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 35, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 36, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 37, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 38, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 39, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 40, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 41, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 42, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 43, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 44, + column: "MovieId", + value: 0); + + migrationBuilder.UpdateData( + table: "screenings", + keyColumn: "Id", + keyValue: 45, + column: "MovieId", + value: 0); + } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Migrations/CinemaContextModelSnapshot.cs b/api-cinema-challenge/api-cinema-challenge/Migrations/CinemaContextModelSnapshot.cs new file mode 100644 index 00000000..b5505ce7 --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Migrations/CinemaContextModelSnapshot.cs @@ -0,0 +1,4832 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using api_cinema_challenge.Data; + +#nullable disable + +namespace api_cinema_challenge.Migrations +{ + [DbContext(typeof(CinemaContext))] + partial class CinemaContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("api_cinema_challenge.Models.Customer", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("Email") + .IsRequired() + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("Phone") + .IsRequired() + .HasColumnType("text"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("customers"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.einstein@nasa.org.us", + Name = "Serena Einstein", + Phone = "+4798654233", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winslet@aftenposten.no", + Name = "Elvis Winslet", + Phone = "+4750099200", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.hepburn@dagbladet.no", + Name = "Oprah Hepburn", + Phone = "+4712586923", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.swift@apple.com", + Name = "Audrey Swift", + Phone = "+4735146790", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.jagger@vg.no", + Name = "Cristiano Jagger", + Phone = "+4718010140", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.windsor@microsoft.com", + Name = "Donald Windsor", + Phone = "+4775818525", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.gates@tokyo.ac.jp", + Name = "Rafael Gates", + Phone = "+4793415257", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.messi@ntnu.no", + Name = "Donald Messi", + Phone = "+4798212673", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.trump@microsoft.com", + Name = "Elvis Trump", + Phone = "+4786467565", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.freeman@sydney.edu.au", + Name = "Bill Freeman", + Phone = "+4718375518", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.winslet@gov.nl", + Name = "Audrey Winslet", + Phone = "+4754980153", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.jackson@bbc.co.uk", + Name = "Timian Jackson", + Phone = "+4753968651", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.dicaprio@mit.edu", + Name = "Mick DiCaprio", + Phone = "+4765811496", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.nadal@ox.ac.uk", + Name = "Donald Nadal", + Phone = "+4748913184", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.monroe@something.com", + Name = "Donald Monroe", + Phone = "+4736671902", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@microsoft.com", + Name = "Bill Federer", + Phone = "+4757983861", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.depp@ntnu.no", + Name = "Donald Depp", + Phone = "+4797198853", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.swift@ox.ac.uk", + Name = "Barack Swift", + Phone = "+4796317752", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.ronaldo@google.com", + Name = "Messi Ronaldo", + Phone = "+4782992590", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.gates@dagbladet.no", + Name = "Donald Gates", + Phone = "+4740591714", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 21, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.winfrey@harvard.edu", + Name = "Serena Winfrey", + Phone = "+4765222914", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.winslet@uio.no", + Name = "Audrey Winslet", + Phone = "+4728539812", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.nadal@dagbladet.no", + Name = "Charles Nadal", + Phone = "+4732717007", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 24, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.einstein@wikipedia.org", + Name = "Bill Einstein", + Phone = "+4724869515", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jolie@wikipedia.org", + Name = "Leonardo Jolie", + Phone = "+4725870905", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.trump@amazon.com", + Name = "Taylor Trump", + Phone = "+4782878137", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 27, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.messi@theworld.ca", + Name = "Rafael Messi", + Phone = "+4749157626", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.depp@apple.com", + Name = "Roger Depp", + Phone = "+4731970591", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.freeman@reddit.com", + Name = "Bill Freeman", + Phone = "+4753931142", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.freeman@un.org", + Name = "Jimi Freeman", + Phone = "+4780233684", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + CreatedAt = new DateTime(2020, 11, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.jolie@reddit.com", + Name = "Rafael Jolie", + Phone = "+4733425352", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.windsor@amazon.com", + Name = "Serena Windsor", + Phone = "+4724436799", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.federer@uio.no", + Name = "Barack Federer", + Phone = "+4741083924", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.williams@vg.no", + Name = "Charles Williams", + Phone = "+4777168827", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.depp@vg.no", + Name = "Roger Depp", + Phone = "+4742944612", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.dicaprio@apple.com", + Name = "Oprah DiCaprio", + Phone = "+4769307146", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.swift@harvard.edu", + Name = "Lionel Swift", + Phone = "+4791515051", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + CreatedAt = new DateTime(2020, 10, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@uit.no", + Name = "Rafael Husveg", + Phone = "+4727333786", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.ronaldo@amazon.com", + Name = "Oprah Ronaldo", + Phone = "+4791665621", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.trump@google.com", + Name = "Messi Trump", + Phone = "+4759808962", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.nadal@gov.nl", + Name = "Kate Nadal", + Phone = "+4796731002", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.hepburn@dn.no", + Name = "Rafael Hepburn", + Phone = "+4716437790", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.freeman@mit.edu", + Name = "Audrey Freeman", + Phone = "+4756423247", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.obama@stackoverflow.com", + Name = "Audrey Obama", + Phone = "+4746604824", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.federer@vg.no", + Name = "Kate Federer", + Phone = "+4730321514", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 46, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.einstein@gov.ru", + Name = "Serena Einstein", + Phone = "+4732187286", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 47, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.jolie@something.com", + Name = "Audrey Jolie", + Phone = "+4780416108", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 48, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.depp@gov.gr", + Name = "Jimi Depp", + Phone = "+4780752954", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 49, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.winfrey@regjeringen.no", + Name = "Cristiano Winfrey", + Phone = "+4739241527", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 50, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.einstein@nrk.no", + Name = "Oprah Einstein", + Phone = "+4758624624", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 51, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.swift@uit.no", + Name = "Cristiano Swift", + Phone = "+4721969718", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 52, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.middleton@gov.us", + Name = "Mick Middleton", + Phone = "+4721577109", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 53, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.nadal@stackoverflow.com", + Name = "Donald Nadal", + Phone = "+4769091059", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 54, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@aftenposten.no", + Name = "Kate Gates", + Phone = "+4798264201", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 55, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.clinton@nmbu.no", + Name = "Taylor Clinton", + Phone = "+4728496247", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 56, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@dagbladet.no", + Name = "Leonardo Trump", + Phone = "+4731078806", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 57, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.federer@dagbladet.no", + Name = "Messi Federer", + Phone = "+4786108458", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 58, + CreatedAt = new DateTime(2020, 11, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hendrix@nasa.org.us", + Name = "Elvis Hendrix", + Phone = "+4797020160", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 59, + CreatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winfrey@reddit.com", + Name = "Elvis Winfrey", + Phone = "+4731283436", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 60, + CreatedAt = new DateTime(2020, 11, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.obama@ntnu.no", + Name = "Messi Obama", + Phone = "+4768500433", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 61, + CreatedAt = new DateTime(2020, 11, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.clinton@sydney.edu.au", + Name = "Messi Clinton", + Phone = "+4746386926", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 62, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.jackson@wikipedia.org", + Name = "Jimi Jackson", + Phone = "+4790575139", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 63, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hepburn@sydney.edu.au", + Name = "Kate Hepburn", + Phone = "+4732025597", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 64, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jackson@mit.edu", + Name = "Charles Jackson", + Phone = "+4769183730", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 65, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.ronaldo@ox.ac.uk", + Name = "Cristiano Ronaldo", + Phone = "+4750731503", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 66, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.windsor@regjeringen.no", + Name = "Lionel Windsor", + Phone = "+4788091667", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 67, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.williams@stackoverflow.com", + Name = "Cristiano Williams", + Phone = "+4726432565", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 68, + CreatedAt = new DateTime(2020, 11, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.jackson@who.int", + Name = "Mick Jackson", + Phone = "+4754834908", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 69, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.winslet@sydney.edu.au", + Name = "Donald Winslet", + Phone = "+4794787088", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 70, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.middleton@regjeringen.no", + Name = "Kate Middleton", + Phone = "+4796871563", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 71, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.nadal@un.org", + Name = "Charles Nadal", + Phone = "+4721218762", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 72, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.husveg@reddit.com", + Name = "Messi Husveg", + Phone = "+4759628976", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 73, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.federer@un.org", + Name = "Messi Federer", + Phone = "+4790749534", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 74, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.dicaprio@theworld.ca", + Name = "Messi DiCaprio", + Phone = "+4726065401", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 75, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@sydney.edu.au", + Name = "Timian Gates", + Phone = "+4771238544", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 76, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "audrey.jagger@ox.ac.uk", + Name = "Audrey Jagger", + Phone = "+4782116146", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 77, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.winfrey@gov.us", + Name = "Lionel Winfrey", + Phone = "+4722193419", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 78, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.messi@amazon.com", + Name = "Rafael Messi", + Phone = "+4743134874", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 79, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.ronaldo@google.com", + Name = "Bill Ronaldo", + Phone = "+4770005289", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 80, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.federer@microsoft.com", + Name = "Rafael Federer", + Phone = "+4781315514", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 81, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.clinton@mit.edu", + Name = "Donald Clinton", + Phone = "+4749543434", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 82, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jackson@nmbu.no", + Name = "Donald Jackson", + Phone = "+4761118531", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 83, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.swift@nmbu.no", + Name = "Oprah Swift", + Phone = "+4757247965", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 84, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.winslet@nmbu.no", + Name = "Bill Winslet", + Phone = "+4725159829", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 85, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.messi@harvard.edu", + Name = "Mick Messi", + Phone = "+4740967675", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 86, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.einstein@sydney.edu.au", + Name = "Cristiano Einstein", + Phone = "+4786923921", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 87, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.obama@gov.nl", + Name = "Lionel Obama", + Phone = "+4791209991", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 88, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.einstein@microsoft.com", + Name = "Kate Einstein", + Phone = "+4718948809", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 89, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.nadal@mit.edu", + Name = "Kate Nadal", + Phone = "+4711566291", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 90, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.obama@vg.no", + Name = "Taylor Obama", + Phone = "+4710308065", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 91, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.ronaldo@ntnu.no", + Name = "Oprah Ronaldo", + Phone = "+4741344498", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 92, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.depp@sydney.edu.au", + Name = "Cristiano Depp", + Phone = "+4742656755", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 93, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@apple.com", + Name = "Bill Federer", + Phone = "+4725848809", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 94, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.clinton@google.com", + Name = "Mick Clinton", + Phone = "+4769471381", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 95, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.depp@uit.no", + Name = "Mick Depp", + Phone = "+4794558038", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 96, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.trump@something.com", + Name = "Mick Trump", + Phone = "+4782164706", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 97, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.federer@google.com", + Name = "Barack Federer", + Phone = "+4781495514", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 98, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.husveg@stackoverflow.com", + Name = "Bill Husveg", + Phone = "+4724025822", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 99, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jackson@something.com", + Name = "Leonardo Jackson", + Phone = "+4720007993", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 100, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.windsor@tesla.com", + Name = "Kate Windsor", + Phone = "+4779990851", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 101, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.federer@gov.gr", + Name = "Charles Federer", + Phone = "+4763148363", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 102, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.obama@aftenposten.no", + Name = "Donald Obama", + Phone = "+4755149875", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 103, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.clinton@vg.no", + Name = "Roger Clinton", + Phone = "+4784083446", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 104, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.depp@sydney.edu.au", + Name = "Jimi Depp", + Phone = "+4725450309", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 105, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.presley@nasa.org.us", + Name = "Messi Presley", + Phone = "+4786155121", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 106, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.nadal@sydney.edu.au", + Name = "Cristiano Nadal", + Phone = "+4777987067", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 107, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@gov.gr", + Name = "Mick Hendrix", + Phone = "+4776568653", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 108, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@gov.us", + Name = "Rafael Husveg", + Phone = "+4797198747", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 109, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.presley@un.org", + Name = "Taylor Presley", + Phone = "+4749341027", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 110, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.swift@nrk.no", + Name = "Roger Swift", + Phone = "+4713816113", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 111, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.swift@nmbu.no", + Name = "Donald Swift", + Phone = "+4772873967", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 112, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.freeman@uio.no", + Name = "Oprah Freeman", + Phone = "+4723625072", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 113, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.husveg@ox.ac.uk", + Name = "Rafael Husveg", + Phone = "+4742570606", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 114, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.winslet@google.com", + Name = "Barack Winslet", + Phone = "+4760419448", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 115, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.monroe@gov.ru", + Name = "Barack Monroe", + Phone = "+4786987482", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 116, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@mit.edu", + Name = "Leonardo Trump", + Phone = "+4790022318", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 117, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.freeman@nasa.org.us", + Name = "Serena Freeman", + Phone = "+4725135140", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 118, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.jagger@microsoft.com", + Name = "Mick Jagger", + Phone = "+4798688366", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 119, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.obama@dagbladet.no", + Name = "Kate Obama", + Phone = "+4729523943", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 120, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.clinton@stackoverflow.com", + Name = "Leonardo Clinton", + Phone = "+4761335158", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 121, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.presley@uit.no", + Name = "Mick Presley", + Phone = "+4793911593", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 122, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.gates@dagbladet.no", + Name = "Mick Gates", + Phone = "+4742098309", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 123, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.husveg@gov.nl", + Name = "Donald Husveg", + Phone = "+4744402784", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 124, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.nadal@tesla.com", + Name = "Oprah Nadal", + Phone = "+4711821095", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 125, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.trump@ntnu.no", + Name = "Leonardo Trump", + Phone = "+4753659393", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 126, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.jolie@dn.no", + Name = "Lionel Jolie", + Phone = "+4766011799", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 127, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.ronaldo@regjeringen.no", + Name = "Taylor Ronaldo", + Phone = "+4716034399", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 128, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.gates@mit.edu", + Name = "Messi Gates", + Phone = "+4726399068", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 129, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.jolie@stackoverflow.com", + Name = "Leonardo Jolie", + Phone = "+4785362268", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 130, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.jolie@stackoverflow.com", + Name = "Barack Jolie", + Phone = "+4796329523", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 131, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@something.com", + Name = "Timian Gates", + Phone = "+4743227372", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 132, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.husveg@nrk.no", + Name = "Timian Husveg", + Phone = "+4753483733", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 133, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.freeman@amazon.com", + Name = "Timian Freeman", + Phone = "+4787189460", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 134, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.trump@bbc.co.uk", + Name = "Donald Trump", + Phone = "+4764181429", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 135, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@amazon.com", + Name = "Oprah Jagger", + Phone = "+4775511912", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 136, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.jolie@dn.no", + Name = "Roger Jolie", + Phone = "+4733478038", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 137, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.trump@who.int", + Name = "Jimi Trump", + Phone = "+4757111945", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 138, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.winslet@dn.no", + Name = "Kate Winslet", + Phone = "+4729021342", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 139, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.husveg@stackoverflow.com", + Name = "Messi Husveg", + Phone = "+4776867537", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 140, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.dicaprio@mit.edu", + Name = "Taylor DiCaprio", + Phone = "+4769984935", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 141, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.swift@theworld.ca", + Name = "Rafael Swift", + Phone = "+4779376969", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 142, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.depp@something.com", + Name = "Messi Depp", + Phone = "+4789381758", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 143, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.husveg@ox.ac.uk", + Name = "Cristiano Husveg", + Phone = "+4795356763", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 144, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@tesla.com", + Name = "Kate Gates", + Phone = "+4731023984", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 145, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.gates@theworld.ca", + Name = "Timian Gates", + Phone = "+4792868122", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 146, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hendrix@tesla.com", + Name = "Kate Hendrix", + Phone = "+4773179510", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 147, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.presley@microsoft.com", + Name = "Leonardo Presley", + Phone = "+4721249323", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 148, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.jagger@regjeringen.no", + Name = "Messi Jagger", + Phone = "+4777383815", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 149, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.ronaldo@uit.no", + Name = "Taylor Ronaldo", + Phone = "+4739168939", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 150, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.trump@nrk.no", + Name = "Taylor Trump", + Phone = "+4757236844", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 151, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.jackson@aftenposten.no", + Name = "Timian Jackson", + Phone = "+4747442491", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 152, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.federer@dn.no", + Name = "Bill Federer", + Phone = "+4773741695", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 153, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.winslet@nrk.no", + Name = "Roger Winslet", + Phone = "+4780917391", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 154, + CreatedAt = new DateTime(2020, 11, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@nasa.org.us", + Name = "Charles Jolie", + Phone = "+4768143256", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 155, + CreatedAt = new DateTime(2020, 11, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.middleton@dn.no", + Name = "Kate Middleton", + Phone = "+4746026165", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 156, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.clinton@apple.com", + Name = "Charles Clinton", + Phone = "+4749444494", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 157, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.federer@microsoft.com", + Name = "Timian Federer", + Phone = "+4775070583", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 158, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.depp@ox.ac.uk", + Name = "Timian Depp", + Phone = "+4792623051", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 159, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jackson@nmbu.no", + Name = "Donald Jackson", + Phone = "+4792943294", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 160, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@bbc.co.uk", + Name = "Charles Jolie", + Phone = "+4713572468", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 161, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.ronaldo@amazon.com", + Name = "Jimi Ronaldo", + Phone = "+4729363061", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 162, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.winfrey@microsoft.com", + Name = "Messi Winfrey", + Phone = "+4791858630", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 163, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.hendrix@nmbu.no", + Name = "Kate Hendrix", + Phone = "+4734057901", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 164, + CreatedAt = new DateTime(2020, 11, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.middleton@theworld.ca", + Name = "Oprah Middleton", + Phone = "+4799913874", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 165, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.middleton@who.int", + Name = "Oprah Middleton", + Phone = "+4783907296", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 166, + CreatedAt = new DateTime(2020, 10, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.presley@nrk.no", + Name = "Messi Presley", + Phone = "+4712410015", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 167, + CreatedAt = new DateTime(2020, 10, 31, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.gates@vg.no", + Name = "Cristiano Gates", + Phone = "+4787999809", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 168, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.jagger@gov.nl", + Name = "Serena Jagger", + Phone = "+4769339223", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 169, + CreatedAt = new DateTime(2020, 10, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.gates@tesla.com", + Name = "Kate Gates", + Phone = "+4783633084", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 170, + CreatedAt = new DateTime(2020, 10, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.obama@ntnu.no", + Name = "Bill Obama", + Phone = "+4778618509", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 171, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.monroe@gov.nl", + Name = "Messi Monroe", + Phone = "+4777149234", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 172, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.windsor@sydney.edu.au", + Name = "Rafael Windsor", + Phone = "+4774253974", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 173, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.husveg@vg.no", + Name = "Kate Husveg", + Phone = "+4712262036", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 174, + CreatedAt = new DateTime(2020, 12, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.hendrix@un.org", + Name = "Jimi Hendrix", + Phone = "+4723594804", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 175, + CreatedAt = new DateTime(2020, 11, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.jagger@reddit.com", + Name = "Rafael Jagger", + Phone = "+4769734141", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 176, + CreatedAt = new DateTime(2020, 10, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.dicaprio@nasa.org.us", + Name = "Kate DiCaprio", + Phone = "+4730476680", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 177, + CreatedAt = new DateTime(2020, 11, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.winslet@ntnu.no", + Name = "Timian Winslet", + Phone = "+4746378599", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 178, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@amazon.com", + Name = "Oprah Jagger", + Phone = "+4714577884", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 179, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jolie@amazon.com", + Name = "Charles Jolie", + Phone = "+4721243178", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 180, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.hepburn@nasa.org.us", + Name = "Rafael Hepburn", + Phone = "+4744499745", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 181, + CreatedAt = new DateTime(2020, 10, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hepburn@openai.com", + Name = "Elvis Hepburn", + Phone = "+4783117733", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 182, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.hendrix@openai.com", + Name = "Messi Hendrix", + Phone = "+4723747134", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 183, + CreatedAt = new DateTime(2020, 10, 17, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.clinton@nmbu.no", + Name = "Mick Clinton", + Phone = "+4747052865", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 184, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.jagger@gov.ru", + Name = "Taylor Jagger", + Phone = "+4714589778", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 185, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.hepburn@dagbladet.no", + Name = "Jimi Hepburn", + Phone = "+4760889722", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 186, + CreatedAt = new DateTime(2020, 12, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.winslet@un.org", + Name = "Charles Winslet", + Phone = "+4727804466", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 187, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.messi@harvard.edu", + Name = "Taylor Messi", + Phone = "+4760033392", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 188, + CreatedAt = new DateTime(2020, 12, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.middleton@gov.ru", + Name = "Leonardo Middleton", + Phone = "+4788377888", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 189, + CreatedAt = new DateTime(2020, 11, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.obama@reddit.com", + Name = "Donald Obama", + Phone = "+4752993643", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 190, + CreatedAt = new DateTime(2020, 11, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.windsor@sydney.edu.au", + Name = "Donald Windsor", + Phone = "+4778018462", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 191, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.freeman@theworld.ca", + Name = "Rafael Freeman", + Phone = "+4731492399", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 192, + CreatedAt = new DateTime(2020, 11, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.nadal@openai.com", + Name = "Mick Nadal", + Phone = "+4726179198", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 193, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.jagger@dn.no", + Name = "Charles Jagger", + Phone = "+4786749070", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 194, + CreatedAt = new DateTime(2020, 11, 20, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.williams@regjeringen.no", + Name = "Oprah Williams", + Phone = "+4785560056", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 195, + CreatedAt = new DateTime(2020, 11, 10, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.hendrix@gov.us", + Name = "Messi Hendrix", + Phone = "+4788004459", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 196, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "taylor.federer@gov.nl", + Name = "Taylor Federer", + Phone = "+4795714823", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 197, + CreatedAt = new DateTime(2020, 10, 29, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.trump@amazon.com", + Name = "Cristiano Trump", + Phone = "+4756871101", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 198, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.depp@regjeringen.no", + Name = "Cristiano Depp", + Phone = "+4794243831", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 199, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hepburn@sydney.edu.au", + Name = "Mick Hepburn", + Phone = "+4768379350", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 200, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.jagger@uit.no", + Name = "Oprah Jagger", + Phone = "+4774908337", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 201, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.einstein@tesla.com", + Name = "Jimi Einstein", + Phone = "+4768730068", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 202, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.monroe@mit.edu", + Name = "Messi Monroe", + Phone = "+4754049485", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 203, + CreatedAt = new DateTime(2020, 11, 4, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.messi@nmbu.no", + Name = "Barack Messi", + Phone = "+4787360423", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 204, + CreatedAt = new DateTime(2020, 10, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.gates@something.com", + Name = "Barack Gates", + Phone = "+4713260319", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 205, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.obama@stackoverflow.com", + Name = "Messi Obama", + Phone = "+4732311046", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 206, + CreatedAt = new DateTime(2020, 10, 30, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.nadal@wikipedia.org", + Name = "Lionel Nadal", + Phone = "+4764701764", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 207, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.nadal@stackoverflow.com", + Name = "Jimi Nadal", + Phone = "+4728919645", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 208, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.windsor@mit.edu", + Name = "Leonardo Windsor", + Phone = "+4733291487", + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 209, + CreatedAt = new DateTime(2020, 11, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.dicaprio@ox.ac.uk", + Name = "Mick DiCaprio", + Phone = "+4731719366", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 210, + CreatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.williams@wikipedia.org", + Name = "Cristiano Williams", + Phone = "+4734668408", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 211, + CreatedAt = new DateTime(2020, 11, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "charles.gates@apple.com", + Name = "Charles Gates", + Phone = "+4715249439", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 212, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.obama@dagbladet.no", + Name = "Roger Obama", + Phone = "+4754594896", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 213, + CreatedAt = new DateTime(2020, 10, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.ronaldo@tesla.com", + Name = "Leonardo Ronaldo", + Phone = "+4717295123", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 214, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.ronaldo@tesla.com", + Name = "Cristiano Ronaldo", + Phone = "+4743874215", + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 215, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "timian.swift@openai.com", + Name = "Timian Swift", + Phone = "+4763969684", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 216, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.monroe@harvard.edu", + Name = "Rafael Monroe", + Phone = "+4784375644", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 217, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "donald.jolie@stackoverflow.com", + Name = "Donald Jolie", + Phone = "+4772151502", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 218, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.federer@microsoft.com", + Name = "Oprah Federer", + Phone = "+4791939721", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 219, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.jagger@aftenposten.no", + Name = "Bill Jagger", + Phone = "+4778911660", + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 220, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.middleton@dagbladet.no", + Name = "Messi Middleton", + Phone = "+4722464563", + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 221, + CreatedAt = new DateTime(2020, 10, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.hepburn@amazon.com", + Name = "Elvis Hepburn", + Phone = "+4735338366", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 222, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.jackson@stackoverflow.com", + Name = "Barack Jackson", + Phone = "+4773026146", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 223, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@gov.ru", + Name = "Mick Hendrix", + Phone = "+4725615535", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 224, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "oprah.gates@apple.com", + Name = "Oprah Gates", + Phone = "+4799942352", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 225, + CreatedAt = new DateTime(2020, 10, 27, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "jimi.jackson@regjeringen.no", + Name = "Jimi Jackson", + Phone = "+4721734511", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 226, + CreatedAt = new DateTime(2020, 11, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.presley@gov.ru", + Name = "Lionel Presley", + Phone = "+4712334915", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 227, + CreatedAt = new DateTime(2020, 11, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.hendrix@openai.com", + Name = "Mick Hendrix", + Phone = "+4750872119", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 228, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "roger.middleton@uit.no", + Name = "Roger Middleton", + Phone = "+4762484064", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 229, + CreatedAt = new DateTime(2020, 11, 3, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.jagger@who.int", + Name = "Serena Jagger", + Phone = "+4787783850", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 230, + CreatedAt = new DateTime(2020, 10, 24, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "elvis.winslet@mit.edu", + Name = "Elvis Winslet", + Phone = "+4756369336", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 231, + CreatedAt = new DateTime(2020, 11, 25, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.gates@apple.com", + Name = "Barack Gates", + Phone = "+4799336168", + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 232, + CreatedAt = new DateTime(2020, 11, 26, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "lionel.winfrey@sydney.edu.au", + Name = "Lionel Winfrey", + Phone = "+4787214840", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 233, + CreatedAt = new DateTime(2020, 11, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.gates@reddit.com", + Name = "Rafael Gates", + Phone = "+4797465413", + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 234, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.ronaldo@stackoverflow.com", + Name = "Kate Ronaldo", + Phone = "+4713662516", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 235, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "serena.winslet@nmbu.no", + Name = "Serena Winslet", + Phone = "+4796131717", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 236, + CreatedAt = new DateTime(2020, 11, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "barack.presley@uio.no", + Name = "Barack Presley", + Phone = "+4797258217", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 237, + CreatedAt = new DateTime(2020, 11, 21, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.jolie@openai.com", + Name = "Kate Jolie", + Phone = "+4796395559", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 238, + CreatedAt = new DateTime(2020, 11, 22, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "kate.swift@uit.no", + Name = "Kate Swift", + Phone = "+4798271334", + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 239, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.dicaprio@nmbu.no", + Name = "Leonardo DiCaprio", + Phone = "+4778889329", + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 240, + CreatedAt = new DateTime(2020, 12, 1, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.winslet@wikipedia.org", + Name = "Cristiano Winslet", + Phone = "+4724377752", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 241, + CreatedAt = new DateTime(2020, 11, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "messi.swift@harvard.edu", + Name = "Messi Swift", + Phone = "+4799525339", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 242, + CreatedAt = new DateTime(2020, 10, 18, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.nadal@gov.us", + Name = "Rafael Nadal", + Phone = "+4721403869", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 243, + CreatedAt = new DateTime(2020, 11, 9, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.monroe@something.com", + Name = "Cristiano Monroe", + Phone = "+4785649771", + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 244, + CreatedAt = new DateTime(2020, 11, 23, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "mick.messi@apple.com", + Name = "Mick Messi", + Phone = "+4716903521", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 245, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.einstein@mit.edu", + Name = "Leonardo Einstein", + Phone = "+4790859687", + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 246, + CreatedAt = new DateTime(2020, 11, 16, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "cristiano.freeman@un.org", + Name = "Cristiano Freeman", + Phone = "+4743791572", + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 247, + CreatedAt = new DateTime(2020, 11, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "leonardo.swift@theworld.ca", + Name = "Leonardo Swift", + Phone = "+4790624988", + UpdatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 248, + CreatedAt = new DateTime(2020, 11, 2, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "bill.depp@amazon.com", + Name = "Bill Depp", + Phone = "+4753167607", + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 249, + CreatedAt = new DateTime(2020, 10, 19, 0, 0, 0, 0, DateTimeKind.Utc), + Email = "rafael.depp@wikipedia.org", + Name = "Rafael Depp", + Phone = "+4766839558", + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Movie", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("Description") + .IsRequired() + .HasColumnType("text"); + + b.Property("Rating") + .IsRequired() + .HasColumnType("text"); + + b.Property("RuntimeMins") + .HasColumnType("integer"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("movies"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.", + Rating = "9.3", + RuntimeMins = 142, + Title = "The Shawshank Redemption", + UpdatedAt = new DateTime(2019, 8, 21, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son.", + Rating = "9.2", + RuntimeMins = 175, + Title = "The Godfather", + UpdatedAt = new DateTime(2019, 9, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "When the menace known as the Joker wreaks havoc and chaos on Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.", + Rating = "9.1", + RuntimeMins = 252, + Title = "The Dark Knight" + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The lives of two mob hitmen, a boxer, a gangster's wife, and a pair of diner bandits intertwine in four tales of violence and redemption.", + Rating = "8.8", + RuntimeMins = 254, + Title = "Pulp Fiction", + UpdatedAt = new DateTime(2020, 10, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The presidencies of Kennedy and Johnson, the Vietnam War, and other history unfold through the perspective of an Alabama man with an IQ of 75.", + Rating = "8.8", + RuntimeMins = 242, + Title = "Forrest Gump", + UpdatedAt = new DateTime(2018, 3, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A thief who steals corporate secrets through dream-sharing technology is given the inverse task of planting an idea into the mind of a CEO.", + Rating = "8.8", + RuntimeMins = 248, + Title = "Inception", + UpdatedAt = new DateTime(2020, 2, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into something much more.", + Rating = "8.8", + RuntimeMins = 239, + Title = "Fight Club", + UpdatedAt = new DateTime(2019, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.", + Rating = "8.7", + RuntimeMins = 236, + Title = "The Matrix", + UpdatedAt = new DateTime(2020, 6, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.", + Rating = "8.7", + RuntimeMins = 269, + Title = "Interstellar", + UpdatedAt = new DateTime(2020, 6, 11, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.", + Rating = "8.5", + RuntimeMins = 232, + Title = "Parasite", + UpdatedAt = new DateTime(2018, 9, 3, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A meek Hobbit sets out on a journey to destroy a powerful ring and save Middle-earth from the Dark Lord Sauron.", + Rating = "8.8", + RuntimeMins = 178, + Title = "The Lord of the Rings: The Fellowship of the Ring", + UpdatedAt = new DateTime(2018, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The fellowship continues their fight against Sauron's forces while Frodo and Sam draw closer to Mordor.", + Rating = "8.7", + RuntimeMins = 179, + Title = "The Lord of the Rings: The Two Towers", + UpdatedAt = new DateTime(2018, 3, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The final battle for Middle-earth begins as Frodo and Sam reach the heart of Mordor to destroy the One Ring.", + Rating = "8.9", + RuntimeMins = 201, + Title = "The Lord of the Rings: The Return of the King" + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A former Roman general seeks vengeance against the corrupt emperor who murdered his family and sent him into slavery.", + Rating = "8.5", + RuntimeMins = 155, + Title = "Gladiator", + UpdatedAt = new DateTime(2019, 6, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Simba, a young lion prince, flees his kingdom after the murder of his father but eventually learns the true meaning of responsibility and bravery.", + Rating = "8.5", + RuntimeMins = 88, + Title = "The Lion King" + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "Two rival magicians engage in a bitter competition, obsessively trying to outdo each other with dangerous tricks and illusions.", + Rating = "8.5", + RuntimeMins = 130, + Title = "The Prestige", + UpdatedAt = new DateTime(2019, 9, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A young drummer enrolls at a music conservatory and struggles under the extreme demands of a ruthless instructor.", + Rating = "8.5", + RuntimeMins = 106, + Title = "Whiplash", + UpdatedAt = new DateTime(2019, 8, 15, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "An undercover cop and a mole in the police force try to identify each other while infiltrating an Irish gang in Boston.", + Rating = "8.5", + RuntimeMins = 151, + Title = "The Departed", + UpdatedAt = new DateTime(2019, 6, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "A failed comedian descends into madness and emerges as the infamous criminal mastermind in Gotham City.", + Rating = "8.4", + RuntimeMins = 122, + Title = "Joker", + UpdatedAt = new DateTime(2019, 1, 11, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + Description = "The surviving members of the Avengers work together to undo the destruction caused by Thanos and restore balance to the universe.", + Rating = "8.4", + RuntimeMins = 181, + Title = "Avengers: Endgame", + UpdatedAt = new DateTime(2018, 4, 30, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Screening", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Capacity") + .HasColumnType("integer"); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("MovieId") + .HasColumnType("integer"); + + b.Property("ScreenNumber") + .HasColumnType("integer"); + + b.Property("StartsAt") + .HasColumnType("timestamp with time zone"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("screenings"); + + b.HasData( + new + { + Id = 1, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 1, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 2, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 3, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 3, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 3, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 4, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 5, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 5, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 9, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 5, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 10, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 5, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 6, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 6, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 7, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 14, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 7, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 15, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 7, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 8, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 8, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 18, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 8, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 9, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 9, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 21, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 10, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 11, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 11, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 24, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 11, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 12, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 14, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 24, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 27, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 14, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 14, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 14, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 16, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 5, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 16, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 16, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 16, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 17, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 17, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 26, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 17, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 17, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 18, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 18, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 27, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 28, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + Capacity = 24, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 18, + ScreenNumber = 1, + StartsAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + Capacity = 21, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 18, + ScreenNumber = 5, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 19, + ScreenNumber = 3, + StartsAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 25, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + Capacity = 20, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 19, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + Capacity = 23, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 20, + ScreenNumber = 4, + StartsAt = new DateTime(2020, 12, 29, 0, 0, 0, 0, DateTimeKind.Utc), + UpdatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + Capacity = 22, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + MovieId = 20, + ScreenNumber = 2, + StartsAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc) + }); + }); + + modelBuilder.Entity("api_cinema_challenge.Models.Ticket", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone"); + + b.Property("CustomerId") + .HasColumnType("integer"); + + b.Property("NumSeats") + .HasColumnType("integer"); + + b.Property("ScreeningId") + .HasColumnType("integer"); + + b.Property("UpdatedAt") + .HasColumnType("timestamp with time zone"); + + b.HasKey("Id"); + + b.ToTable("tickets"); + + b.HasData( + new + { + Id = 1, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 204, + NumSeats = 1, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 12, 7, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 2, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 10, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 10, 11, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 3, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 14, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 10, 12, 9, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 4, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 174, + NumSeats = 15, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 8, 1, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 5, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 118, + NumSeats = 20, + ScreeningId = 1, + UpdatedAt = new DateTime(2020, 12, 12, 10, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 6, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 60, + NumSeats = 1, + ScreeningId = 2, + UpdatedAt = new DateTime(2020, 12, 14, 9, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 7, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 96, + NumSeats = 7, + ScreeningId = 2, + UpdatedAt = new DateTime(2020, 12, 11, 12, 12, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 8, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 195, + NumSeats = 12, + ScreeningId = 2 + }, + new + { + Id = 9, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 136, + NumSeats = 17, + ScreeningId = 2 + }, + new + { + Id = 10, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 196, + NumSeats = 1, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 21, 11, 11, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 11, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 87, + NumSeats = 9, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 21, 10, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 12, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 167, + NumSeats = 17, + ScreeningId = 3, + UpdatedAt = new DateTime(2020, 12, 14, 11, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 13, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 23, + NumSeats = 1, + ScreeningId = 4 + }, + new + { + Id = 14, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 93, + NumSeats = 2, + ScreeningId = 4 + }, + new + { + Id = 15, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 163, + NumSeats = 4, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 12, 3, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 16, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 166, + NumSeats = 7, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 12, 5, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 17, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 12, + ScreeningId = 4 + }, + new + { + Id = 18, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 10, + NumSeats = 13, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 11, 2, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 19, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 86, + NumSeats = 22, + ScreeningId = 4, + UpdatedAt = new DateTime(2020, 12, 15, 8, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 20, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 8, + NumSeats = 23, + ScreeningId = 4 + }, + new + { + Id = 21, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 144, + NumSeats = 1, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 11, 3, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 22, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 102, + NumSeats = 9, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 16, 0, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 23, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 16, + ScreeningId = 5 + }, + new + { + Id = 24, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 174, + NumSeats = 19, + ScreeningId = 5, + UpdatedAt = new DateTime(2020, 12, 15, 10, 10, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 25, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 134, + NumSeats = 1, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 20, 14, 35, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 26, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 218, + NumSeats = 8, + ScreeningId = 6 + }, + new + { + Id = 27, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 132, + NumSeats = 13, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 14, 8, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 28, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 16, + ScreeningId = 6, + UpdatedAt = new DateTime(2020, 12, 19, 9, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 29, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 81, + NumSeats = 1, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 8, 8, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 30, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 80, + NumSeats = 3, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 8, 0, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 31, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 170, + NumSeats = 12, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 14, 8, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 32, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 199, + NumSeats = 17, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 9, 12, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 33, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 22, + NumSeats = 19, + ScreeningId = 7, + UpdatedAt = new DateTime(2020, 12, 14, 9, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 34, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 171, + NumSeats = 1, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 17, 1, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 35, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 128, + NumSeats = 4, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 11, 8, 47, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 36, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 46, + NumSeats = 12, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 12, 9, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 37, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 112, + NumSeats = 16, + ScreeningId = 8, + UpdatedAt = new DateTime(2020, 12, 14, 11, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 38, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 72, + NumSeats = 1, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 10, 9, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 39, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 106, + NumSeats = 6, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 16, 13, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 40, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 104, + NumSeats = 15, + ScreeningId = 9, + UpdatedAt = new DateTime(2020, 12, 11, 11, 15, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 41, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 100, + NumSeats = 1, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 10, 4, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 42, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 157, + NumSeats = 9, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 14, 4, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 43, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 107, + NumSeats = 18, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 15, 12, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 44, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 20, + ScreeningId = 10, + UpdatedAt = new DateTime(2020, 12, 15, 14, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 45, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 24, + NumSeats = 1, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 12, 2, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 46, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 153, + NumSeats = 2, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 14, 8, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 47, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 196, + NumSeats = 4, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 10, 12, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 48, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 137, + NumSeats = 6, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 18, 8, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 49, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 8, + NumSeats = 7, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 12, 13, 18, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 50, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 160, + NumSeats = 10, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 19, 1, 4, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 51, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 158, + NumSeats = 13, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 19, 4, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 52, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 17, + ScreeningId = 11, + UpdatedAt = new DateTime(2020, 12, 18, 9, 6, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 53, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 1, + ScreeningId = 12 + }, + new + { + Id = 54, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 19, + NumSeats = 5, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 16, 11, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 55, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 14, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 15, 14, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 56, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 141, + NumSeats = 19, + ScreeningId = 12 + }, + new + { + Id = 57, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 180, + NumSeats = 23, + ScreeningId = 12, + UpdatedAt = new DateTime(2020, 12, 15, 6, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 58, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 128, + NumSeats = 1, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 13, 4, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 59, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 9, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 11, 13, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 60, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 185, + NumSeats = 18, + ScreeningId = 13, + UpdatedAt = new DateTime(2020, 12, 9, 10, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 61, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 188, + NumSeats = 1, + ScreeningId = 14 + }, + new + { + Id = 62, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 50, + NumSeats = 2, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 10, 6, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 63, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 58, + NumSeats = 7, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 13, 1, 0, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 64, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 162, + NumSeats = 16, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 12, 6, 58, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 65, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 19, + ScreeningId = 14, + UpdatedAt = new DateTime(2020, 12, 11, 6, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 66, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 123, + NumSeats = 1, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 9, 12, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 67, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 75, + NumSeats = 3, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 8, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 68, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 36, + NumSeats = 5, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 3, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 69, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 211, + NumSeats = 14, + ScreeningId = 15, + UpdatedAt = new DateTime(2020, 12, 13, 8, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 70, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 84, + NumSeats = 1, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 18, 12, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 71, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 17, + NumSeats = 10, + ScreeningId = 16 + }, + new + { + Id = 72, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 147, + NumSeats = 11, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 17, 0, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 73, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 17, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 18, 12, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 74, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 20, + ScreeningId = 16, + UpdatedAt = new DateTime(2020, 12, 13, 14, 59, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 75, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 151, + NumSeats = 1, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 15, 2, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 76, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 35, + NumSeats = 8, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 18, 13, 11, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 77, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 10, + ScreeningId = 17 + }, + new + { + Id = 78, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 17, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 11, 10, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 79, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 51, + NumSeats = 22, + ScreeningId = 17, + UpdatedAt = new DateTime(2020, 12, 12, 7, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 80, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 115, + NumSeats = 1, + ScreeningId = 18, + UpdatedAt = new DateTime(2020, 12, 16, 10, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 81, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 197, + NumSeats = 7, + ScreeningId = 18, + UpdatedAt = new DateTime(2020, 12, 13, 12, 17, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 82, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 240, + NumSeats = 14, + ScreeningId = 18 + }, + new + { + Id = 83, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 1, + ScreeningId = 19 + }, + new + { + Id = 84, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 21, + NumSeats = 5, + ScreeningId = 19 + }, + new + { + Id = 85, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 101, + NumSeats = 11, + ScreeningId = 19, + UpdatedAt = new DateTime(2020, 12, 14, 11, 25, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 86, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 245, + NumSeats = 16, + ScreeningId = 19 + }, + new + { + Id = 87, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 140, + NumSeats = 1, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 19, 1, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 88, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 218, + NumSeats = 8, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 14, 4, 12, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 89, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 15, + ScreeningId = 20, + UpdatedAt = new DateTime(2020, 12, 17, 9, 38, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 90, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 242, + NumSeats = 1, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 18, 9, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 91, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 121, + NumSeats = 2, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 13, 11, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 92, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 182, + NumSeats = 6, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 15, 1, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 93, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 26, + NumSeats = 9, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 20, 2, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 94, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 172, + NumSeats = 13, + ScreeningId = 21 + }, + new + { + Id = 95, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 149, + NumSeats = 19, + ScreeningId = 21, + UpdatedAt = new DateTime(2020, 12, 19, 8, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 96, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 198, + NumSeats = 1, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 14, 12, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 97, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 119, + NumSeats = 4, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 20, 3, 25, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 98, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 51, + NumSeats = 11, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 12, 0, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 99, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 13, + NumSeats = 14, + ScreeningId = 22, + UpdatedAt = new DateTime(2020, 12, 13, 5, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 100, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 159, + NumSeats = 1, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 15, 3, 51, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 101, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 38, + NumSeats = 2, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 12, 1, 37, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 102, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 209, + NumSeats = 11, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 11, 14, 27, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 103, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 184, + NumSeats = 12, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 14, 6, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 104, + CreatedAt = new DateTime(2020, 12, 6, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 144, + NumSeats = 14, + ScreeningId = 23, + UpdatedAt = new DateTime(2020, 12, 6, 11, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 105, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 206, + NumSeats = 1, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 14, 9, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 106, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 15, + NumSeats = 9, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 13, 9, 54, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 107, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 145, + NumSeats = 15, + ScreeningId = 24, + UpdatedAt = new DateTime(2020, 12, 16, 0, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 108, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 27, + NumSeats = 20, + ScreeningId = 24 + }, + new + { + Id = 109, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 4, + NumSeats = 1, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 18, 8, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 110, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 167, + NumSeats = 8, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 19, 8, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 111, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 173, + NumSeats = 14, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 18, 2, 29, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 112, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 19, + ScreeningId = 25, + UpdatedAt = new DateTime(2020, 12, 19, 7, 8, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 113, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 180, + NumSeats = 1, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 11, 4, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 114, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 123, + NumSeats = 8, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 8, 6, 18, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 115, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 138, + NumSeats = 16, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 13, 11, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 116, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 173, + NumSeats = 21, + ScreeningId = 26, + UpdatedAt = new DateTime(2020, 12, 12, 12, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 117, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 236, + NumSeats = 1, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 14, 1, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 118, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 212, + NumSeats = 9, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 13, 6, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 119, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 142, + NumSeats = 15, + ScreeningId = 27, + UpdatedAt = new DateTime(2020, 12, 10, 7, 7, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 120, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 139, + NumSeats = 1, + ScreeningId = 28, + UpdatedAt = new DateTime(2020, 12, 13, 1, 23, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 121, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 195, + NumSeats = 10, + ScreeningId = 28, + UpdatedAt = new DateTime(2020, 12, 13, 12, 42, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 122, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 194, + NumSeats = 19, + ScreeningId = 28 + }, + new + { + Id = 123, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 1, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 18, 3, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 124, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 178, + NumSeats = 3, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 21, 0, 33, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 125, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 160, + NumSeats = 4, + ScreeningId = 29 + }, + new + { + Id = 126, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 78, + NumSeats = 12, + ScreeningId = 29 + }, + new + { + Id = 127, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 37, + NumSeats = 16, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 19, 12, 52, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 128, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 104, + NumSeats = 17, + ScreeningId = 29, + UpdatedAt = new DateTime(2020, 12, 14, 14, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 129, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 226, + NumSeats = 1, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 15, 8, 57, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 130, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 91, + NumSeats = 2, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 12, 13, 40, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 131, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 171, + NumSeats = 3, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 15, 3, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 132, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 48, + NumSeats = 10, + ScreeningId = 30 + }, + new + { + Id = 133, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 25, + NumSeats = 13, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 9, 8, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 134, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 168, + NumSeats = 17, + ScreeningId = 30, + UpdatedAt = new DateTime(2020, 12, 10, 10, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 135, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 152, + NumSeats = 1, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 8, 4, 44, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 136, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 202, + NumSeats = 6, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 7, 8, 39, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 137, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 29, + NumSeats = 10, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 8, 12, 10, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 138, + CreatedAt = new DateTime(2020, 12, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 211, + NumSeats = 17, + ScreeningId = 31, + UpdatedAt = new DateTime(2020, 12, 7, 12, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 139, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 175, + NumSeats = 1, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 15, 9, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 140, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 70, + NumSeats = 3, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 14, 14, 8, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 141, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 244, + NumSeats = 8, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 12, 8, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 142, + CreatedAt = new DateTime(2020, 12, 8, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 44, + NumSeats = 13, + ScreeningId = 32, + UpdatedAt = new DateTime(2020, 12, 8, 10, 5, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 143, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 59, + NumSeats = 1, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 9, 4, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 144, + CreatedAt = new DateTime(2020, 12, 9, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 133, + NumSeats = 4, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 9, 10, 32, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 145, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 112, + NumSeats = 13, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 17, 0, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 146, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 169, + NumSeats = 15, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 14, 9, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 147, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 69, + NumSeats = 20, + ScreeningId = 33, + UpdatedAt = new DateTime(2020, 12, 13, 10, 13, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 148, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 62, + NumSeats = 1, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 13, 10, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 149, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 188, + NumSeats = 2, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 20, 2, 31, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 150, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 177, + NumSeats = 7, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 15, 5, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 151, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 124, + NumSeats = 9, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 14, 1, 55, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 152, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 102, + NumSeats = 18, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 18, 4, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 153, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 3, + NumSeats = 20, + ScreeningId = 34, + UpdatedAt = new DateTime(2020, 12, 13, 12, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 154, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 66, + NumSeats = 1, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 15, 7, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 155, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 41, + NumSeats = 5, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 11, 9, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 156, + CreatedAt = new DateTime(2020, 12, 10, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 242, + NumSeats = 12, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 10, 12, 46, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 157, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 186, + NumSeats = 19, + ScreeningId = 35, + UpdatedAt = new DateTime(2020, 12, 17, 1, 53, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 158, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 18, + NumSeats = 1, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 21, 5, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 159, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 147, + NumSeats = 3, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 14, 0, 37, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 160, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 10, + NumSeats = 8, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 20, 13, 14, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 161, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 212, + NumSeats = 16, + ScreeningId = 36, + UpdatedAt = new DateTime(2020, 12, 17, 4, 30, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 162, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 68, + NumSeats = 1, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 16, 12, 19, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 163, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 210, + NumSeats = 5, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 12, 2, 2, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 164, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 25, + NumSeats = 8, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 13, 6, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 165, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 122, + NumSeats = 14, + ScreeningId = 37 + }, + new + { + Id = 166, + CreatedAt = new DateTime(2020, 12, 12, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 248, + NumSeats = 22, + ScreeningId = 37, + UpdatedAt = new DateTime(2020, 12, 12, 13, 6, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 167, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 119, + NumSeats = 1, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 20, 11, 49, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 168, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 14, + NumSeats = 3, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 13, 7, 22, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 169, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 16, + NumSeats = 12, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 19, 4, 47, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 170, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 179, + NumSeats = 13, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 20, 5, 17, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 171, + CreatedAt = new DateTime(2020, 12, 11, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 13, + NumSeats = 16, + ScreeningId = 38, + UpdatedAt = new DateTime(2020, 12, 11, 3, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 172, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 194, + NumSeats = 18, + ScreeningId = 38 + }, + new + { + Id = 173, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 52, + NumSeats = 1, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 15, 3, 1, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 174, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 199, + NumSeats = 10, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 17, 11, 59, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 175, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 110, + NumSeats = 15, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 19, 10, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 176, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 108, + NumSeats = 16, + ScreeningId = 39 + }, + new + { + Id = 177, + CreatedAt = new DateTime(2020, 12, 21, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 116, + NumSeats = 19, + ScreeningId = 39, + UpdatedAt = new DateTime(2020, 12, 21, 8, 3, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 178, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 77, + NumSeats = 1, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 19, 9, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 179, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 181, + NumSeats = 8, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 13, 9, 3, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 180, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 70, + NumSeats = 17, + ScreeningId = 40, + UpdatedAt = new DateTime(2020, 12, 18, 4, 21, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 181, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 210, + NumSeats = 1, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 18, 7, 15, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 182, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 230, + NumSeats = 7, + ScreeningId = 41 + }, + new + { + Id = 183, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 169, + NumSeats = 11, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 23, 6, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 184, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 61, + NumSeats = 18, + ScreeningId = 41, + UpdatedAt = new DateTime(2020, 12, 15, 12, 9, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 185, + CreatedAt = new DateTime(2020, 12, 19, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 190, + NumSeats = 1, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 19, 14, 50, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 186, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 37, + NumSeats = 2, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 18, 4, 20, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 187, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 186, + NumSeats = 7, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 15, 8, 56, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 188, + CreatedAt = new DateTime(2020, 12, 16, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 184, + NumSeats = 14, + ScreeningId = 42 + }, + new + { + Id = 189, + CreatedAt = new DateTime(2020, 12, 18, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 239, + NumSeats = 21, + ScreeningId = 42, + UpdatedAt = new DateTime(2020, 12, 18, 6, 28, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 190, + CreatedAt = new DateTime(2020, 12, 23, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 57, + NumSeats = 1, + ScreeningId = 43, + UpdatedAt = new DateTime(2020, 12, 23, 6, 36, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 191, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 117, + NumSeats = 9, + ScreeningId = 43, + UpdatedAt = new DateTime(2020, 12, 15, 1, 24, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 192, + CreatedAt = new DateTime(2020, 12, 17, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 42, + NumSeats = 15, + ScreeningId = 43 + }, + new + { + Id = 193, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 99, + NumSeats = 1, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 13, 10, 33, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 194, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 183, + NumSeats = 8, + ScreeningId = 44 + }, + new + { + Id = 195, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 204, + NumSeats = 13, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 20, 9, 48, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 196, + CreatedAt = new DateTime(2020, 12, 20, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 64, + NumSeats = 16, + ScreeningId = 44 + }, + new + { + Id = 197, + CreatedAt = new DateTime(2020, 12, 22, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 193, + NumSeats = 17, + ScreeningId = 44, + UpdatedAt = new DateTime(2020, 12, 22, 12, 34, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 198, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 114, + NumSeats = 1, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 14, 1, 41, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 199, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 49, + NumSeats = 5, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 5, 16, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 200, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 26, + NumSeats = 9, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 13, 43, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 201, + CreatedAt = new DateTime(2020, 12, 14, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 178, + NumSeats = 13, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 14, 5, 26, 0, 0, DateTimeKind.Utc) + }, + new + { + Id = 202, + CreatedAt = new DateTime(2020, 12, 13, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 175, + NumSeats = 15, + ScreeningId = 45 + }, + new + { + Id = 203, + CreatedAt = new DateTime(2020, 12, 15, 0, 0, 0, 0, DateTimeKind.Utc), + CustomerId = 222, + NumSeats = 19, + ScreeningId = 45, + UpdatedAt = new DateTime(2020, 12, 15, 3, 36, 0, 0, DateTimeKind.Utc) + }); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/Models/Customer.cs b/api-cinema-challenge/api-cinema-challenge/Models/Customer.cs index 632c786b..e9daf6b2 100644 --- a/api-cinema-challenge/api-cinema-challenge/Models/Customer.cs +++ b/api-cinema-challenge/api-cinema-challenge/Models/Customer.cs @@ -7,8 +7,7 @@ namespace api_cinema_challenge.Models public class Customer { [Key] - [DatabaseGenerated(DatabaseGeneratedOption.Identity)] - public Guid Id { get; set; } + public int Id { get; set; } public string Name { get; set; } public string Email { get; set; } public string Phone { get; set; } diff --git a/api-cinema-challenge/api-cinema-challenge/Models/Movie.cs b/api-cinema-challenge/api-cinema-challenge/Models/Movie.cs index 1e902f78..b0d74d0d 100644 --- a/api-cinema-challenge/api-cinema-challenge/Models/Movie.cs +++ b/api-cinema-challenge/api-cinema-challenge/Models/Movie.cs @@ -7,13 +7,14 @@ namespace api_cinema_challenge.Models public class Movie { [Key] - [DatabaseGenerated(DatabaseGeneratedOption.Identity)] - public Guid Id { get; set; } + public int Id { get; set; } public string Title { get; set; } public string Rating { get; set; } public string Description { get; set; } public int RuntimeMins { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } + public ICollection Screenings { get; set; } = new List(); + } } diff --git a/api-cinema-challenge/api-cinema-challenge/Models/Screening.cs b/api-cinema-challenge/api-cinema-challenge/Models/Screening.cs index 35e8e511..ede00c61 100644 --- a/api-cinema-challenge/api-cinema-challenge/Models/Screening.cs +++ b/api-cinema-challenge/api-cinema-challenge/Models/Screening.cs @@ -7,12 +7,14 @@ namespace api_cinema_challenge.Models public class Screening { [Key] - [DatabaseGenerated(DatabaseGeneratedOption.Identity)] - public Guid Id { get; set; } + public int Id { get; set; } + public int MovieId { get; set; } public int ScreenNumber { get; set; } public int Capacity { get; set; } public DateTime StartsAt { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } + + } } diff --git a/api-cinema-challenge/api-cinema-challenge/Models/Ticket.cs b/api-cinema-challenge/api-cinema-challenge/Models/Ticket.cs index ad0ba184..e9cbd61b 100644 --- a/api-cinema-challenge/api-cinema-challenge/Models/Ticket.cs +++ b/api-cinema-challenge/api-cinema-challenge/Models/Ticket.cs @@ -7,13 +7,12 @@ namespace api_cinema_challenge.Models public class Ticket { [Key] - [DatabaseGenerated(DatabaseGeneratedOption.Identity)] - public Guid Id { get; set; } + public int Id { get; set; } public int NumSeats { get; set; } [ForeignKey("customer")] - public Guid CustomerId { get; set; } + public int CustomerId { get; set; } [ForeignKey("screening")] - public Guid ScreeningId { get; set; } + public int ScreeningId { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } } diff --git a/api-cinema-challenge/api-cinema-challenge/Program.cs b/api-cinema-challenge/api-cinema-challenge/Program.cs index 8cb9f709..beccab15 100644 --- a/api-cinema-challenge/api-cinema-challenge/Program.cs +++ b/api-cinema-challenge/api-cinema-challenge/Program.cs @@ -1,6 +1,8 @@ using api_cinema_challenge.Data; +using api_cinema_challenge.Endpoints; using api_cinema_challenge.Models; using api_cinema_challenge.Repository; +using api_cinema_challenge.Tools; using System.Numerics; var builder = WebApplication.CreateBuilder(args); @@ -14,6 +16,7 @@ builder.Services.AddScoped, Repository>(); builder.Services.AddScoped, Repository>(); +builder.Services.AddAutoMapper(typeof(MappingProfile)); var app = builder.Build(); @@ -25,7 +28,7 @@ } app.UseHttpsRedirection(); - - +app.ConfigureCustomerEndpoint(); +app.ConfigureMovieEndpoint(); app.Run(); diff --git a/api-cinema-challenge/api-cinema-challenge/Repository/IRepository.cs b/api-cinema-challenge/api-cinema-challenge/Repository/IRepository.cs index 70a594ea..235268b3 100644 --- a/api-cinema-challenge/api-cinema-challenge/Repository/IRepository.cs +++ b/api-cinema-challenge/api-cinema-challenge/Repository/IRepository.cs @@ -1,8 +1,11 @@ -namespace api_cinema_challenge.Repository +using System.Linq.Expressions; + +namespace api_cinema_challenge.Repository { public interface IRepository { Task> Get(); + Task> Get(Expression> filter); Task Insert(T entity); Task Update(T entity); Task Delete(object id); diff --git a/api-cinema-challenge/api-cinema-challenge/Repository/Repository.cs b/api-cinema-challenge/api-cinema-challenge/Repository/Repository.cs index 908cc31f..b622c4a7 100644 --- a/api-cinema-challenge/api-cinema-challenge/Repository/Repository.cs +++ b/api-cinema-challenge/api-cinema-challenge/Repository/Repository.cs @@ -1,5 +1,6 @@ using api_cinema_challenge.Data; using Microsoft.EntityFrameworkCore; +using System.Linq.Expressions; namespace api_cinema_challenge.Repository { @@ -19,6 +20,11 @@ public async Task> Get() return await _table.ToListAsync(); } + public async Task> Get(Expression> filter) + { + return await _table.Where(filter).ToListAsync(); + } + public async Task Insert(T entity) { await _table.AddAsync(entity); diff --git a/api-cinema-challenge/api-cinema-challenge/Tools/MappingProfile.cs b/api-cinema-challenge/api-cinema-challenge/Tools/MappingProfile.cs new file mode 100644 index 00000000..79b42f0d --- /dev/null +++ b/api-cinema-challenge/api-cinema-challenge/Tools/MappingProfile.cs @@ -0,0 +1,34 @@ +using api_cinema_challenge.DTO; +using api_cinema_challenge.Models; +using AutoMapper; + +namespace api_cinema_challenge.Tools +{ + public class MappingProfile : Profile + { + public MappingProfile() { + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + + + CreateMap>(); + CreateMap>(); + CreateMap>(); + CreateMap>(); + + CreateMap(); + + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + + //CreateMap + } + + + } +} diff --git a/api-cinema-challenge/api-cinema-challenge/api-cinema-challenge.csproj b/api-cinema-challenge/api-cinema-challenge/api-cinema-challenge.csproj index 40acc625..5d026b57 100644 --- a/api-cinema-challenge/api-cinema-challenge/api-cinema-challenge.csproj +++ b/api-cinema-challenge/api-cinema-challenge/api-cinema-challenge.csproj @@ -15,6 +15,7 @@ + @@ -27,8 +28,4 @@ - - - -