diff --git a/TicketOffice/Migrations/20220401115407_InitialCreate.Designer.cs b/TicketOffice/Migrations/20220404151700_InitialCreate.Designer.cs similarity index 92% rename from TicketOffice/Migrations/20220401115407_InitialCreate.Designer.cs rename to TicketOffice/Migrations/20220404151700_InitialCreate.Designer.cs index 98a6755..3e8a357 100644 --- a/TicketOffice/Migrations/20220401115407_InitialCreate.Designer.cs +++ b/TicketOffice/Migrations/20220404151700_InitialCreate.Designer.cs @@ -11,7 +11,7 @@ using TicketOffice.Data; namespace TicketOffice.Migrations { [DbContext(typeof(TicketOfficeContext))] - [Migration("20220401115407_InitialCreate")] + [Migration("20220404151700_InitialCreate")] partial class InitialCreate { protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -69,6 +69,17 @@ namespace TicketOffice.Migrations .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); + b.Property("PassengerFirstName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("PassengerLastName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("PassengerPlace") + .HasColumnType("INTEGER"); + b.Property("RouteId") .HasColumnType("INTEGER"); diff --git a/TicketOffice/Migrations/20220401115407_InitialCreate.cs b/TicketOffice/Migrations/20220404151700_InitialCreate.cs similarity index 94% rename from TicketOffice/Migrations/20220401115407_InitialCreate.cs rename to TicketOffice/Migrations/20220404151700_InitialCreate.cs index 72c6fc1..a1ece00 100644 --- a/TicketOffice/Migrations/20220401115407_InitialCreate.cs +++ b/TicketOffice/Migrations/20220404151700_InitialCreate.cs @@ -69,6 +69,9 @@ namespace TicketOffice.Migrations { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), + PassengerFirstName = table.Column(type: "TEXT", nullable: false), + PassengerLastName = table.Column(type: "TEXT", nullable: false), + PassengerPlace = table.Column(type: "INTEGER", nullable: false), UserId = table.Column(type: "INTEGER", nullable: false), RouteId = table.Column(type: "INTEGER", nullable: false) }, diff --git a/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs b/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs index d9b8e6f..6125266 100644 --- a/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs +++ b/TicketOffice/Migrations/TicketOfficeContextModelSnapshot.cs @@ -67,6 +67,17 @@ namespace TicketOffice.Migrations .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); + b.Property("PassengerFirstName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("PassengerLastName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("PassengerPlace") + .HasColumnType("INTEGER"); + b.Property("RouteId") .HasColumnType("INTEGER"); diff --git a/TicketOffice/Models/Ticket.cs b/TicketOffice/Models/Ticket.cs index d433368..db6bbbc 100644 --- a/TicketOffice/Models/Ticket.cs +++ b/TicketOffice/Models/Ticket.cs @@ -8,6 +8,19 @@ public class Ticket [Key] public int Id { get; set; } + [Required(ErrorMessage = "Поле має бути заповненим")] + [Display(Name = "Ім'я пасажира")] + public string PassengerFirstName { get; set; } + + [Required(ErrorMessage = "Поле має бути заповненим")] + [Display(Name = "Прізвище пасажира")] + public string PassengerLastName { get; set; } + + [Required(ErrorMessage = "Поле має бути заповненим")] + [Display(Name = "Номер місця пасажира")] + public int PassengerPlace { get; set; } + + [ForeignKey("User")] public int UserId { get; set; } public User User { get; set; } diff --git a/TicketOffice/Pages/Routes/Index.cshtml b/TicketOffice/Pages/Routes/Index.cshtml index 854b59a..194bbbc 100644 --- a/TicketOffice/Pages/Routes/Index.cshtml +++ b/TicketOffice/Pages/Routes/Index.cshtml @@ -9,7 +9,7 @@ - +
@@ -19,20 +19,20 @@
Звідки
- +
Куди
- +
Дата відправлення
- +
@@ -164,7 +164,7 @@ @(route.Capacity - route.Tickets.Count) - Вибрати + Обрати } @@ -194,9 +194,7 @@ + } +} + +@if (Model.Routes != null) +{ + foreach (var route in Model.Routes) + { +