commit f83570775b9e990fcf2c8ef317df6ddfd083734f Author: 1eG0ist Date: Wed Feb 26 11:46:28 2025 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/.idea/.idea.IposiGospodDemo/.idea/.gitignore b/.idea/.idea.IposiGospodDemo/.idea/.gitignore new file mode 100644 index 0000000..e10c7f2 --- /dev/null +++ b/.idea/.idea.IposiGospodDemo/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/.idea.IposiGospodDemo.iml +/contentModel.xml +/projectSettingsUpdater.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/IposiGospodDemo.sln b/IposiGospodDemo.sln new file mode 100644 index 0000000..eb78c4c --- /dev/null +++ b/IposiGospodDemo.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IposiGospodDemo", "IposiGospodDemo\IposiGospodDemo.csproj", "{BCCED67E-248C-4E16-991D-D4CB82502437}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BCCED67E-248C-4E16-991D-D4CB82502437}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BCCED67E-248C-4E16-991D-D4CB82502437}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BCCED67E-248C-4E16-991D-D4CB82502437}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BCCED67E-248C-4E16-991D-D4CB82502437}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/IposiGospodDemo/App.axaml b/IposiGospodDemo/App.axaml new file mode 100644 index 0000000..592dc45 --- /dev/null +++ b/IposiGospodDemo/App.axaml @@ -0,0 +1,15 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/IposiGospodDemo/App.axaml.cs b/IposiGospodDemo/App.axaml.cs new file mode 100644 index 0000000..c4e9dcb --- /dev/null +++ b/IposiGospodDemo/App.axaml.cs @@ -0,0 +1,47 @@ +using Avalonia; +using Avalonia.Controls.ApplicationLifetimes; +using Avalonia.Data.Core; +using Avalonia.Data.Core.Plugins; +using System.Linq; +using Avalonia.Markup.Xaml; +using IposiGospodDemo.ViewModels; +using IposiGospodDemo.Views; + +namespace IposiGospodDemo; + +public partial class App : Application +{ + public override void Initialize() + { + AvaloniaXamlLoader.Load(this); + } + + public override void OnFrameworkInitializationCompleted() + { + if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) + { + // Avoid duplicate validations from both Avalonia and the CommunityToolkit. + // More info: https://docs.avaloniaui.net/docs/guides/development-guides/data-validation#manage-validationplugins + DisableAvaloniaDataAnnotationValidation(); + desktop.MainWindow = new MainWindow + { + DataContext = new MainWindowViewModel(), + }; + } + + base.OnFrameworkInitializationCompleted(); + } + + private void DisableAvaloniaDataAnnotationValidation() + { + // Get an array of plugins to remove + var dataValidationPluginsToRemove = + BindingPlugins.DataValidators.OfType().ToArray(); + + // remove each entry found + foreach (var plugin in dataValidationPluginsToRemove) + { + BindingPlugins.DataValidators.Remove(plugin); + } + } +} \ No newline at end of file diff --git a/IposiGospodDemo/Assets/avalonia-logo.ico b/IposiGospodDemo/Assets/avalonia-logo.ico new file mode 100644 index 0000000..da8d49f Binary files /dev/null and b/IposiGospodDemo/Assets/avalonia-logo.ico differ diff --git a/IposiGospodDemo/Context/Charity.cs b/IposiGospodDemo/Context/Charity.cs new file mode 100644 index 0000000..7269d1b --- /dev/null +++ b/IposiGospodDemo/Context/Charity.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Charity +{ + public int CharityId { get; set; } + + public string CharityName { get; set; } = null!; + + public string? CharityDescription { get; set; } + + public string? CharityLogo { get; set; } + + public virtual ICollection Registrations { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Country.cs b/IposiGospodDemo/Context/Country.cs new file mode 100644 index 0000000..5ad17f5 --- /dev/null +++ b/IposiGospodDemo/Context/Country.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Country +{ + public string CountryCode { get; set; } = null!; + + public string CountryName { get; set; } = null!; + + public string CountryFlag { get; set; } = null!; + + public virtual ICollection Marathons { get; set; } = new List(); + + public virtual ICollection Runners { get; set; } = new List(); + + public virtual ICollection Volunteers { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Event.cs b/IposiGospodDemo/Context/Event.cs new file mode 100644 index 0000000..2a970e8 --- /dev/null +++ b/IposiGospodDemo/Context/Event.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Event +{ + public string EventId { get; set; } = null!; + + public string EventName { get; set; } = null!; + + public string EventTypeId { get; set; } = null!; + + public short MarathonId { get; set; } + + public DateTime? StartDateTime { get; set; } + + public decimal? Cost { get; set; } + + public short? MaxParticipants { get; set; } + + public virtual EventType EventType { get; set; } = null!; + + public virtual Marathon Marathon { get; set; } = null!; + + public virtual ICollection RegistrationEvents { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/EventType.cs b/IposiGospodDemo/Context/EventType.cs new file mode 100644 index 0000000..f7ed2e8 --- /dev/null +++ b/IposiGospodDemo/Context/EventType.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class EventType +{ + public string EventTypeId { get; set; } = null!; + + public string EventTypeName { get; set; } = null!; + + public virtual ICollection Events { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Gender.cs b/IposiGospodDemo/Context/Gender.cs new file mode 100644 index 0000000..3146974 --- /dev/null +++ b/IposiGospodDemo/Context/Gender.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Gender +{ + public string Gender1 { get; set; } = null!; + + public virtual ICollection Runners { get; set; } = new List(); + + public virtual ICollection Volunteers { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Marathon.cs b/IposiGospodDemo/Context/Marathon.cs new file mode 100644 index 0000000..80ff70c --- /dev/null +++ b/IposiGospodDemo/Context/Marathon.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Marathon +{ + public short MarathonId { get; set; } + + public string MarathonName { get; set; } = null!; + + public string? CityName { get; set; } + + public string CountryCode { get; set; } = null!; + + public short? YearHeld { get; set; } + + public virtual Country CountryCodeNavigation { get; set; } = null!; + + public virtual ICollection Events { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Position.cs b/IposiGospodDemo/Context/Position.cs new file mode 100644 index 0000000..d1c88c1 --- /dev/null +++ b/IposiGospodDemo/Context/Position.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Position +{ + public int PositionId { get; set; } + + public string PositionName { get; set; } = null!; + + public string? PositionDescription { get; set; } + + public string PayPeriod { get; set; } = null!; + + public decimal PayRate { get; set; } + + public virtual ICollection Staff { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/RaceKitOption.cs b/IposiGospodDemo/Context/RaceKitOption.cs new file mode 100644 index 0000000..b24dacf --- /dev/null +++ b/IposiGospodDemo/Context/RaceKitOption.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class RaceKitOption +{ + public char RaceKitOptionId { get; set; } + + public string RaceKitOption1 { get; set; } = null!; + + public decimal Cost { get; set; } + + public virtual ICollection Registrations { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Registration.cs b/IposiGospodDemo/Context/Registration.cs new file mode 100644 index 0000000..cc9a4c8 --- /dev/null +++ b/IposiGospodDemo/Context/Registration.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Registration +{ + public int RegistrationId { get; set; } + + public int RunnerId { get; set; } + + public DateTime RegistrationDateTime { get; set; } + + public char RaceKitOptionId { get; set; } + + public short RegistrationStatusId { get; set; } + + public decimal Cost { get; set; } + + public int CharityId { get; set; } + + public decimal SponsorshipTarget { get; set; } + + public virtual Charity Charity { get; set; } = null!; + + public virtual RaceKitOption RaceKitOption { get; set; } = null!; + + public virtual ICollection RegistrationEvents { get; set; } = new List(); + + public virtual RegistrationStatus RegistrationStatus { get; set; } = null!; + + public virtual Runner Runner { get; set; } = null!; + + public virtual ICollection Sponsorships { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/RegistrationEvent.cs b/IposiGospodDemo/Context/RegistrationEvent.cs new file mode 100644 index 0000000..4ee0a47 --- /dev/null +++ b/IposiGospodDemo/Context/RegistrationEvent.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class RegistrationEvent +{ + public int RegistrationEventId { get; set; } + + public int RegistrationId { get; set; } + + public string EventId { get; set; } = null!; + + public short? BibNumber { get; set; } + + public int? RaceTime { get; set; } + + public virtual Event Event { get; set; } = null!; + + public virtual Registration Registration { get; set; } = null!; +} diff --git a/IposiGospodDemo/Context/RegistrationStatus.cs b/IposiGospodDemo/Context/RegistrationStatus.cs new file mode 100644 index 0000000..d540d8b --- /dev/null +++ b/IposiGospodDemo/Context/RegistrationStatus.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class RegistrationStatus +{ + public short RegistrationStatusId { get; set; } + + public string RegistrationStatus1 { get; set; } = null!; + + public virtual ICollection Registrations { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Role.cs b/IposiGospodDemo/Context/Role.cs new file mode 100644 index 0000000..0d218c5 --- /dev/null +++ b/IposiGospodDemo/Context/Role.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Role +{ + public char RoleId { get; set; } + + public string RoleName { get; set; } = null!; + + public virtual ICollection Users { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Runner.cs b/IposiGospodDemo/Context/Runner.cs new file mode 100644 index 0000000..d21cde1 --- /dev/null +++ b/IposiGospodDemo/Context/Runner.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Runner +{ + public int RunnerId { get; set; } + + public string Email { get; set; } = null!; + + public string Gender { get; set; } = null!; + + public DateTime? DateOfBirth { get; set; } + + public string CountryCode { get; set; } = null!; + + public virtual Country CountryCodeNavigation { get; set; } = null!; + + public virtual User EmailNavigation { get; set; } = null!; + + public virtual Gender GenderNavigation { get; set; } = null!; + + public virtual ICollection Registrations { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Sponsorship.cs b/IposiGospodDemo/Context/Sponsorship.cs new file mode 100644 index 0000000..7012c88 --- /dev/null +++ b/IposiGospodDemo/Context/Sponsorship.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Sponsorship +{ + public int SponsorshipId { get; set; } + + public string SponsorName { get; set; } = null!; + + public int RegistrationId { get; set; } + + public decimal Amount { get; set; } + + public virtual Registration Registration { get; set; } = null!; +} diff --git a/IposiGospodDemo/Context/Staff.cs b/IposiGospodDemo/Context/Staff.cs new file mode 100644 index 0000000..d4d7bd4 --- /dev/null +++ b/IposiGospodDemo/Context/Staff.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Staff +{ + public int StaffId { get; set; } + + public string FirstName { get; set; } = null!; + + public string LastName { get; set; } = null!; + + public DateOnly DateOfBirth { get; set; } + + public char Gender { get; set; } + + public int PositionId { get; set; } + + public string Email { get; set; } = null!; + + public string? Comments { get; set; } + + public virtual Position Position { get; set; } = null!; + + public virtual ICollection Timesheets { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/Timesheet.cs b/IposiGospodDemo/Context/Timesheet.cs new file mode 100644 index 0000000..feb9d66 --- /dev/null +++ b/IposiGospodDemo/Context/Timesheet.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Timesheet +{ + public int TimesheetId { get; set; } + + public int StaffId { get; set; } + + public DateTime StartDateTime { get; set; } + + public DateTime EndDateTime { get; set; } + + public decimal PayAmount { get; set; } + + public virtual Staff Staff { get; set; } = null!; +} diff --git a/IposiGospodDemo/Context/User.cs b/IposiGospodDemo/Context/User.cs new file mode 100644 index 0000000..cb3dfcd --- /dev/null +++ b/IposiGospodDemo/Context/User.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class User +{ + public string Email { get; set; } = null!; + + public string Password { get; set; } = null!; + + public string? FirstName { get; set; } + + public string? LastName { get; set; } + + public char RoleId { get; set; } + + public virtual Role Role { get; set; } = null!; + + public virtual ICollection Runners { get; set; } = new List(); +} diff --git a/IposiGospodDemo/Context/User3Context.cs b/IposiGospodDemo/Context/User3Context.cs new file mode 100644 index 0000000..1559193 --- /dev/null +++ b/IposiGospodDemo/Context/User3Context.cs @@ -0,0 +1,379 @@ +using System; +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore; + +namespace IposiGospodDemo.Context; + +public partial class User3Context : DbContext +{ + public User3Context() + { + } + + public User3Context(DbContextOptions options) + : base(options) + { + } + + public virtual DbSet Charities { get; set; } + + public virtual DbSet Countries { get; set; } + + public virtual DbSet Events { get; set; } + + public virtual DbSet EventTypes { get; set; } + + public virtual DbSet Genders { get; set; } + + public virtual DbSet Marathons { get; set; } + + public virtual DbSet Positions { get; set; } + + public virtual DbSet RaceKitOptions { get; set; } + + public virtual DbSet Registrations { get; set; } + + public virtual DbSet RegistrationEvents { get; set; } + + public virtual DbSet RegistrationStatuses { get; set; } + + public virtual DbSet Roles { get; set; } + + public virtual DbSet Runners { get; set; } + + public virtual DbSet Sponsorships { get; set; } + + public virtual DbSet Staff { get; set; } + + public virtual DbSet Timesheets { get; set; } + + public virtual DbSet Users { get; set; } + + public virtual DbSet Volunteers { get; set; } + + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) +#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see https://go.microsoft.com/fwlink/?LinkId=723263. + => optionsBuilder.UseNpgsql("Host=45.67.56.214;Port=5454;Database=user3;Username=user3;password=VOTfZ8PQ"); + + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.CharityId).HasName("Charity_pkey"); + + entity.ToTable("Charity", "public3"); + + entity.Property(e => e.CharityDescription).HasMaxLength(2000); + entity.Property(e => e.CharityLogo).HasMaxLength(50); + entity.Property(e => e.CharityName).HasMaxLength(100); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.CountryCode).HasName("Country_pkey"); + + entity.ToTable("Country", "public3"); + + entity.Property(e => e.CountryCode) + .HasMaxLength(3) + .IsFixedLength(); + entity.Property(e => e.CountryFlag).HasMaxLength(100); + entity.Property(e => e.CountryName).HasMaxLength(100); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.EventId).HasName("Event_pkey"); + + entity.ToTable("Event", "public3"); + + entity.Property(e => e.EventId) + .HasMaxLength(6) + .IsFixedLength(); + entity.Property(e => e.Cost).HasPrecision(10, 2); + entity.Property(e => e.EventName).HasMaxLength(50); + entity.Property(e => e.EventTypeId) + .HasMaxLength(2) + .IsFixedLength(); + entity.Property(e => e.StartDateTime).HasColumnType("timestamp without time zone"); + + entity.HasOne(d => d.EventType).WithMany(p => p.Events) + .HasForeignKey(d => d.EventTypeId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Event_EventTypeId_fkey"); + + entity.HasOne(d => d.Marathon).WithMany(p => p.Events) + .HasForeignKey(d => d.MarathonId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Event_MarathonId_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.EventTypeId).HasName("EventType_pkey"); + + entity.ToTable("EventType", "public3"); + + entity.Property(e => e.EventTypeId) + .HasMaxLength(2) + .IsFixedLength(); + entity.Property(e => e.EventTypeName).HasMaxLength(50); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.Gender1).HasName("Gender_pkey"); + + entity.ToTable("Gender", "public3"); + + entity.Property(e => e.Gender1) + .HasMaxLength(10) + .HasColumnName("Gender"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.MarathonId).HasName("Marathon_pkey"); + + entity.ToTable("Marathon", "public3"); + + entity.Property(e => e.MarathonId).ValueGeneratedNever(); + entity.Property(e => e.CityName).HasMaxLength(80); + entity.Property(e => e.CountryCode) + .HasMaxLength(3) + .IsFixedLength(); + entity.Property(e => e.MarathonName).HasMaxLength(80); + + entity.HasOne(d => d.CountryCodeNavigation).WithMany(p => p.Marathons) + .HasForeignKey(d => d.CountryCode) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Marathon_CountryCode_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.PositionId).HasName("Position_pkey"); + + entity.ToTable("Position", "public3"); + + entity.Property(e => e.PayRate).HasPrecision(10, 2); + entity.Property(e => e.PositionDescription).HasMaxLength(255); + entity.Property(e => e.PositionName).HasMaxLength(100); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.RaceKitOptionId).HasName("RaceKitOption_pkey"); + + entity.ToTable("RaceKitOption", "public3"); + + entity.Property(e => e.RaceKitOptionId) + .HasMaxLength(1) + .ValueGeneratedNever(); + entity.Property(e => e.Cost).HasPrecision(10, 2); + entity.Property(e => e.RaceKitOption1) + .HasMaxLength(80) + .HasColumnName("RaceKitOption"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.RegistrationId).HasName("Registration_pkey"); + + entity.ToTable("Registration", "public3"); + + entity.Property(e => e.Cost).HasPrecision(10, 2); + entity.Property(e => e.RaceKitOptionId).HasMaxLength(1); + entity.Property(e => e.RegistrationDateTime).HasColumnType("timestamp without time zone"); + entity.Property(e => e.SponsorshipTarget).HasPrecision(10, 2); + + entity.HasOne(d => d.Charity).WithMany(p => p.Registrations) + .HasForeignKey(d => d.CharityId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Registration_CharityId_fkey"); + + entity.HasOne(d => d.RaceKitOption).WithMany(p => p.Registrations) + .HasForeignKey(d => d.RaceKitOptionId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Registration_RaceKitOptionId_fkey"); + + entity.HasOne(d => d.RegistrationStatus).WithMany(p => p.Registrations) + .HasForeignKey(d => d.RegistrationStatusId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Registration_RegistrationStatusId_fkey"); + + entity.HasOne(d => d.Runner).WithMany(p => p.Registrations) + .HasForeignKey(d => d.RunnerId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Registration_RunnerId_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.RegistrationEventId).HasName("RegistrationEvent_pkey"); + + entity.ToTable("RegistrationEvent", "public3"); + + entity.Property(e => e.EventId) + .HasMaxLength(6) + .IsFixedLength(); + + entity.HasOne(d => d.Event).WithMany(p => p.RegistrationEvents) + .HasForeignKey(d => d.EventId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("RegistrationEvent_EventId_fkey"); + + entity.HasOne(d => d.Registration).WithMany(p => p.RegistrationEvents) + .HasForeignKey(d => d.RegistrationId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("RegistrationEvent_RegistrationId_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.RegistrationStatusId).HasName("RegistrationStatus_pkey"); + + entity.ToTable("RegistrationStatus", "public3"); + + entity.Property(e => e.RegistrationStatusId).ValueGeneratedNever(); + entity.Property(e => e.RegistrationStatus1) + .HasMaxLength(80) + .HasColumnName("RegistrationStatus"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.RoleId).HasName("Role_pkey"); + + entity.ToTable("Role", "public3"); + + entity.Property(e => e.RoleId) + .HasMaxLength(1) + .ValueGeneratedNever(); + entity.Property(e => e.RoleName).HasMaxLength(50); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.RunnerId).HasName("Runner_pkey"); + + entity.ToTable("Runner", "public3"); + + entity.Property(e => e.CountryCode) + .HasMaxLength(3) + .IsFixedLength(); + entity.Property(e => e.DateOfBirth).HasColumnType("timestamp without time zone"); + entity.Property(e => e.Email).HasMaxLength(100); + entity.Property(e => e.Gender).HasMaxLength(10); + + entity.HasOne(d => d.CountryCodeNavigation).WithMany(p => p.Runners) + .HasForeignKey(d => d.CountryCode) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Runner_CountryCode_fkey"); + + entity.HasOne(d => d.EmailNavigation).WithMany(p => p.Runners) + .HasForeignKey(d => d.Email) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Runner_Email_fkey"); + + entity.HasOne(d => d.GenderNavigation).WithMany(p => p.Runners) + .HasForeignKey(d => d.Gender) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Runner_Gender_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.SponsorshipId).HasName("Sponsorship_pkey"); + + entity.ToTable("Sponsorship", "public3"); + + entity.Property(e => e.Amount).HasPrecision(10, 2); + entity.Property(e => e.SponsorName).HasMaxLength(150); + + entity.HasOne(d => d.Registration).WithMany(p => p.Sponsorships) + .HasForeignKey(d => d.RegistrationId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Sponsorship_RegistrationId_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.StaffId).HasName("Staff_pkey"); + + entity.ToTable("Staff", "public3"); + + entity.Property(e => e.Email).HasMaxLength(100); + entity.Property(e => e.FirstName).HasMaxLength(100); + entity.Property(e => e.Gender).HasMaxLength(1); + entity.Property(e => e.LastName).HasMaxLength(100); + + entity.HasOne(d => d.Position).WithMany(p => p.Staff) + .HasForeignKey(d => d.PositionId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Staff_PositionId_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.TimesheetId).HasName("Timesheet_pkey"); + + entity.ToTable("Timesheet", "public3"); + + entity.Property(e => e.EndDateTime).HasColumnType("timestamp without time zone"); + entity.Property(e => e.PayAmount).HasPrecision(10, 2); + entity.Property(e => e.StartDateTime).HasColumnType("timestamp without time zone"); + + entity.HasOne(d => d.Staff).WithMany(p => p.Timesheets) + .HasForeignKey(d => d.StaffId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Timesheet_StaffId_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.Email).HasName("User_pkey"); + + entity.ToTable("User", "public3"); + + entity.Property(e => e.Email).HasMaxLength(100); + entity.Property(e => e.FirstName).HasMaxLength(80); + entity.Property(e => e.LastName).HasMaxLength(80); + entity.Property(e => e.Password).HasMaxLength(100); + entity.Property(e => e.RoleId).HasMaxLength(1); + + entity.HasOne(d => d.Role).WithMany(p => p.Users) + .HasForeignKey(d => d.RoleId) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("User_RoleId_fkey"); + }); + + modelBuilder.Entity(entity => + { + entity.HasKey(e => e.VolunteerId).HasName("Volunteer_pkey"); + + entity.ToTable("Volunteer", "public3"); + + entity.Property(e => e.CountryCode) + .HasMaxLength(3) + .IsFixedLength(); + entity.Property(e => e.FirstName).HasMaxLength(80); + entity.Property(e => e.Gender).HasMaxLength(10); + entity.Property(e => e.LastName).HasMaxLength(80); + + entity.HasOne(d => d.CountryCodeNavigation).WithMany(p => p.Volunteers) + .HasForeignKey(d => d.CountryCode) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Volunteer_CountryCode_fkey"); + + entity.HasOne(d => d.GenderNavigation).WithMany(p => p.Volunteers) + .HasForeignKey(d => d.Gender) + .OnDelete(DeleteBehavior.ClientSetNull) + .HasConstraintName("Volunteer_Gender_fkey"); + }); + + OnModelCreatingPartial(modelBuilder); + } + + partial void OnModelCreatingPartial(ModelBuilder modelBuilder); +} diff --git a/IposiGospodDemo/Context/Volunteer.cs b/IposiGospodDemo/Context/Volunteer.cs new file mode 100644 index 0000000..06f65e6 --- /dev/null +++ b/IposiGospodDemo/Context/Volunteer.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; + +namespace IposiGospodDemo.Context; + +public partial class Volunteer +{ + public int VolunteerId { get; set; } + + public string? FirstName { get; set; } + + public string? LastName { get; set; } + + public string CountryCode { get; set; } = null!; + + public string Gender { get; set; } = null!; + + public virtual Country CountryCodeNavigation { get; set; } = null!; + + public virtual Gender GenderNavigation { get; set; } = null!; +} diff --git a/IposiGospodDemo/IposiGospodDemo.csproj b/IposiGospodDemo/IposiGospodDemo.csproj new file mode 100644 index 0000000..4a78317 --- /dev/null +++ b/IposiGospodDemo/IposiGospodDemo.csproj @@ -0,0 +1,34 @@ + + + WinExe + net8.0 + enable + true + app.manifest + true + + + + + + + + + + + + + + + None + All + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + diff --git a/IposiGospodDemo/Program.cs b/IposiGospodDemo/Program.cs new file mode 100644 index 0000000..63c9367 --- /dev/null +++ b/IposiGospodDemo/Program.cs @@ -0,0 +1,21 @@ +using Avalonia; +using System; + +namespace IposiGospodDemo; + +sealed class Program +{ + // Initialization code. Don't use any Avalonia, third-party APIs or any + // SynchronizationContext-reliant code before AppMain is called: things aren't initialized + // yet and stuff might break. + [STAThread] + public static void Main(string[] args) => BuildAvaloniaApp() + .StartWithClassicDesktopLifetime(args); + + // Avalonia configuration, don't remove; also used by visual designer. + public static AppBuilder BuildAvaloniaApp() + => AppBuilder.Configure() + .UsePlatformDetect() + .WithInterFont() + .LogToTrace(); +} \ No newline at end of file diff --git a/IposiGospodDemo/ViewLocator.cs b/IposiGospodDemo/ViewLocator.cs new file mode 100644 index 0000000..689fd9a --- /dev/null +++ b/IposiGospodDemo/ViewLocator.cs @@ -0,0 +1,30 @@ +using System; +using Avalonia.Controls; +using Avalonia.Controls.Templates; +using IposiGospodDemo.ViewModels; + +namespace IposiGospodDemo; + +public class ViewLocator : IDataTemplate +{ + public Control? Build(object? param) + { + if (param is null) + return null; + + var name = param.GetType().FullName!.Replace("ViewModel", "View", StringComparison.Ordinal); + var type = Type.GetType(name); + + if (type != null) + { + return (Control)Activator.CreateInstance(type)!; + } + + return new TextBlock { Text = "Not Found: " + name }; + } + + public bool Match(object? data) + { + return data is ViewModelBase; + } +} \ No newline at end of file diff --git a/IposiGospodDemo/ViewModels/MainWindowViewModel.cs b/IposiGospodDemo/ViewModels/MainWindowViewModel.cs new file mode 100644 index 0000000..b302748 --- /dev/null +++ b/IposiGospodDemo/ViewModels/MainWindowViewModel.cs @@ -0,0 +1,6 @@ +namespace IposiGospodDemo.ViewModels; + +public partial class MainWindowViewModel : ViewModelBase +{ + public string Greeting { get; } = "Welcome to Avalonia!"; +} \ No newline at end of file diff --git a/IposiGospodDemo/ViewModels/ViewModelBase.cs b/IposiGospodDemo/ViewModels/ViewModelBase.cs new file mode 100644 index 0000000..e34965f --- /dev/null +++ b/IposiGospodDemo/ViewModels/ViewModelBase.cs @@ -0,0 +1,7 @@ +using CommunityToolkit.Mvvm.ComponentModel; + +namespace IposiGospodDemo.ViewModels; + +public class ViewModelBase : ObservableObject +{ +} \ No newline at end of file diff --git a/IposiGospodDemo/Views/MainWindow.axaml b/IposiGospodDemo/Views/MainWindow.axaml new file mode 100644 index 0000000..fa1988e --- /dev/null +++ b/IposiGospodDemo/Views/MainWindow.axaml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/IposiGospodDemo/Views/MainWindow.axaml.cs b/IposiGospodDemo/Views/MainWindow.axaml.cs new file mode 100644 index 0000000..aa93bc5 --- /dev/null +++ b/IposiGospodDemo/Views/MainWindow.axaml.cs @@ -0,0 +1,11 @@ +using Avalonia.Controls; + +namespace IposiGospodDemo.Views; + +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/IposiGospodDemo/app.manifest b/IposiGospodDemo/app.manifest new file mode 100644 index 0000000..80ee267 --- /dev/null +++ b/IposiGospodDemo/app.manifest @@ -0,0 +1,18 @@ + + + + + + + + + + + + + +