diff --git a/IposiGospodDemo/App.axaml b/IposiGospodDemo/App.axaml
index 592dc45..c088de3 100644
--- a/IposiGospodDemo/App.axaml
+++ b/IposiGospodDemo/App.axaml
@@ -2,9 +2,14 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="IposiGospodDemo.App"
xmlns:local="using:IposiGospodDemo"
- RequestedThemeVariant="Default">
-
+ xmlns:global="clr-namespace:"
+ xmlns:convertors="clr-namespace:IposiGospodDemo.Convertors"
+ RequestedThemeVariant="Light">
+
+
+
+
diff --git a/IposiGospodDemo/Convertors/ImageConverter.cs b/IposiGospodDemo/Convertors/ImageConverter.cs
new file mode 100644
index 0000000..eb2856c
--- /dev/null
+++ b/IposiGospodDemo/Convertors/ImageConverter.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Globalization;
+using System.IO;
+using Avalonia.Data.Converters;
+using Avalonia.Media.Imaging;
+
+namespace IposiGospodDemo.Convertors;
+
+public class ImageConverter : IValueConverter
+{
+ public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
+ {
+ if (value is string path)
+ {
+ return new Bitmap(Path.Combine(Session.AssetsPath, path.Trim()));
+ }
+ return null;
+ }
+
+ public object? ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
+ {
+ throw new NotImplementedException();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Convertors/RunnerConverter.cs b/IposiGospodDemo/Convertors/RunnerConverter.cs
new file mode 100644
index 0000000..303b040
--- /dev/null
+++ b/IposiGospodDemo/Convertors/RunnerConverter.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Globalization;
+using System.Linq;
+using Avalonia.Data.Converters;
+using IposiGospodDemo.Context;
+
+public class RunnerConverter : IValueConverter
+{
+ public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
+ {
+ if (value is User user)
+ {
+ return $"{user.FirstName} {user.LastName} - {user.Runners.FirstOrDefault()?.RunnerId} ({user.Runners.FirstOrDefault()?.CountryCode})";
+ }
+ return "Неизвестный бегун";
+ }
+
+ public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
+ {
+ throw new NotImplementedException();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Helpers/DbHelper.cs b/IposiGospodDemo/Helpers/DbHelper.cs
new file mode 100644
index 0000000..fde352c
--- /dev/null
+++ b/IposiGospodDemo/Helpers/DbHelper.cs
@@ -0,0 +1,8 @@
+using IposiGospodDemo.Context;
+
+namespace IposiGospodDemo.Helpers;
+
+public static class DbHelper
+{
+ public static readonly User3Context Database = new();
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/IposiGospodDemo.csproj b/IposiGospodDemo/IposiGospodDemo.csproj
index 4a78317..64e6422 100644
--- a/IposiGospodDemo/IposiGospodDemo.csproj
+++ b/IposiGospodDemo/IposiGospodDemo.csproj
@@ -9,13 +9,13 @@
-
+
@@ -31,4 +31,8 @@
+
+
+
+
diff --git a/IposiGospodDemo/Program.cs b/IposiGospodDemo/Program.cs
index 63c9367..e6ee683 100644
--- a/IposiGospodDemo/Program.cs
+++ b/IposiGospodDemo/Program.cs
@@ -1,5 +1,6 @@
using Avalonia;
using System;
+using Avalonia.ReactiveUI;
namespace IposiGospodDemo;
@@ -17,5 +18,6 @@ sealed class Program
=> AppBuilder.Configure()
.UsePlatformDetect()
.WithInterFont()
- .LogToTrace();
+ .LogToTrace()
+ .UseReactiveUI();
}
\ No newline at end of file
diff --git a/IposiGospodDemo/Session.cs b/IposiGospodDemo/Session.cs
new file mode 100644
index 0000000..668bb9d
--- /dev/null
+++ b/IposiGospodDemo/Session.cs
@@ -0,0 +1,23 @@
+using System;
+using IposiGospodDemo.Context;
+
+namespace IposiGospodDemo;
+
+public static class Session
+{
+ public static readonly String Title = "MARATHON SKILLS 2016";
+ public static readonly DateTime MarathonData = new DateTime(2025, 4, 1, 12, 0, 0);
+ public static readonly String Location = "Москва, Россия";
+ public static readonly String Data = "Вторник 1 апреля 2025";
+ public static String RemainingTime = CalculateRemaningTime();
+ public static string AssetsPath = null!;
+ public static User User = null;
+
+ public static String CalculateRemaningTime()
+ {
+ TimeSpan timeLeft = MarathonData - DateTime.Now;
+ return RemainingTime = timeLeft.TotalSeconds > 0
+ ? $"{timeLeft.Days} д. {timeLeft.Hours} ч. {timeLeft.Minutes} мин. до старта марафона"
+ : "Марафон уже начался!";
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/ViewModels/CharityInfoViewModel.cs b/IposiGospodDemo/ViewModels/CharityInfoViewModel.cs
new file mode 100644
index 0000000..318c9c2
--- /dev/null
+++ b/IposiGospodDemo/ViewModels/CharityInfoViewModel.cs
@@ -0,0 +1,17 @@
+using IposiGospodDemo.Context;
+
+namespace IposiGospodDemo.ViewModels;
+
+public class CharityInfoViewModel
+{
+ public string Name { get; }
+ public string ImagePath { get; }
+ public string Description { get; }
+
+ public CharityInfoViewModel(Charity charity)
+ {
+ Name = charity.CharityName;
+ ImagePath = charity.CharityLogo;
+ Description = charity.CharityDescription;
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/ViewModels/ListOfCharitiesWindowViewModel.cs b/IposiGospodDemo/ViewModels/ListOfCharitiesWindowViewModel.cs
new file mode 100644
index 0000000..0d8cfdc
--- /dev/null
+++ b/IposiGospodDemo/ViewModels/ListOfCharitiesWindowViewModel.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Linq;
+using IposiGospodDemo.Context;
+using IposiGospodDemo.Helpers;
+using ReactiveUI;
+
+namespace IposiGospodDemo.ViewModels;
+
+public class ListOfCharitiesWindowViewModel : ViewModelBase
+{
+ private ObservableCollection _charities;
+
+ public ObservableCollection Charities
+ {
+ get => _charities;
+ set => this.RaiseAndSetIfChanged(ref _charities, value);
+ }
+
+ public ListOfCharitiesWindowViewModel()
+ {
+ Charities = new(DbHelper.Database.Charities.ToList());
+ Console.WriteLine(Charities);
+ Console.WriteLine(Charities.Count);
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/ViewModels/MainWindowViewModel.cs b/IposiGospodDemo/ViewModels/MainWindowViewModel.cs
index b302748..cdf2196 100644
--- a/IposiGospodDemo/ViewModels/MainWindowViewModel.cs
+++ b/IposiGospodDemo/ViewModels/MainWindowViewModel.cs
@@ -1,6 +1,8 @@
-namespace IposiGospodDemo.ViewModels;
+using System;
+using System.Timers;
+
+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/MySponsorshipWindowViewModel.cs b/IposiGospodDemo/ViewModels/MySponsorshipWindowViewModel.cs
new file mode 100644
index 0000000..a87b290
--- /dev/null
+++ b/IposiGospodDemo/ViewModels/MySponsorshipWindowViewModel.cs
@@ -0,0 +1,22 @@
+using System.Collections.ObjectModel;
+using IposiGospodDemo.Context;
+using ReactiveUI;
+
+namespace IposiGospodDemo.ViewModels;
+
+public class MySponsorshipWindowViewModel : ViewModelBase
+{
+
+ private ObservableCollection _registrations;
+
+ public ObservableCollection Registrations
+ {
+ get => _registrations;
+ set => this.RaiseAndSetIfChanged(ref _registrations, value);
+ }
+
+ public MySponsorshipWindowViewModel()
+ {
+
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/ViewModels/SponsorARunnerWindowViewModel.cs b/IposiGospodDemo/ViewModels/SponsorARunnerWindowViewModel.cs
new file mode 100644
index 0000000..253965a
--- /dev/null
+++ b/IposiGospodDemo/ViewModels/SponsorARunnerWindowViewModel.cs
@@ -0,0 +1,128 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Reactive;
+using IposiGospodDemo.Context;
+using IposiGospodDemo.Helpers;
+using IposiGospodDemo.Views;
+using Microsoft.EntityFrameworkCore;
+using ReactiveUI;
+
+namespace IposiGospodDemo.ViewModels;
+
+public class SponsorARunnerWindowViewModel : ViewModelBase
+{
+ public List Runners { get; set; }
+
+ private Runner _selectedRunner;
+
+ public Runner SelectedRunner
+ {
+ get => _selectedRunner;
+ set
+ {
+ if (_selectedRunner != value)
+ {
+ _selectedRunner = value;
+ this.RaisePropertyChanged();
+ }
+ SelectedCharity = value?.Registrations?.FirstOrDefault()?.Charity;
+ }
+ }
+
+ private Charity _selectedCharity;
+
+ public Charity SelectedCharity
+ {
+ get => _selectedCharity;
+ set => this.RaiseAndSetIfChanged(ref _selectedCharity, value);
+ }
+
+ private decimal _sum = 50;
+
+ public decimal Sum
+ {
+ get => _sum;
+ set => this.RaiseAndSetIfChanged(ref _sum, value);
+ }
+
+ private string _sponsorName;
+ public string SponsorName
+ {
+ get => _sponsorName;
+ set => this.RaiseAndSetIfChanged(ref _sponsorName, value);
+ }
+
+ private string _cardOwner;
+ public string CardOwner
+ {
+ get => _cardOwner;
+ set => this.RaiseAndSetIfChanged(ref _cardOwner, value);
+ }
+
+ private string _cardNumber;
+ public string CardNumber
+ {
+ get => _cardNumber;
+ set => this.RaiseAndSetIfChanged(ref _cardNumber, value);
+ }
+
+ private string _month;
+ public string Month
+ {
+ get => _month;
+ set => this.RaiseAndSetIfChanged(ref _month, value);
+ }
+
+ private string _year;
+ public string Year
+ {
+ get => _year;
+ set => this.RaiseAndSetIfChanged(ref _year, value);
+ }
+
+ private string _cvc;
+ public string Cvc
+ {
+ get => _cvc;
+ set => this.RaiseAndSetIfChanged(ref _cvc, value);
+ }
+
+
+ public ReactiveCommand IncreaseSumCommand { get; }
+ public ReactiveCommand DecreaseSumCommand { get; }
+
+ public ReactiveCommand OpenCharityInfoWindow { get; }
+
+ public SponsorARunnerWindowViewModel()
+ {
+ Runners = DbHelper.Database.Runners
+ .Include(r => r.CountryCodeNavigation)
+ .Include(r => r.EmailNavigation)
+ .Include(r => r.Registrations)
+ .ThenInclude(reg => reg.Charity)
+ .ToList();
+ SelectedRunner = Runners[0];
+
+ IncreaseSumCommand = ReactiveCommand.Create(IncreaseSum);
+ DecreaseSumCommand = ReactiveCommand.Create(DecreaseSum);
+ OpenCharityInfoWindow = ReactiveCommand.Create(OpenCharityInfoWindowFunc);
+ }
+
+ void DecreaseSum()
+ {
+ if (Sum < 11)
+ Sum = 1;
+ else Sum -= 10;
+ }
+
+ void IncreaseSum()
+ {
+ Sum += 10;
+ }
+
+ void OpenCharityInfoWindowFunc()
+ {
+ new CharityInfoWindow(SelectedCharity).Show();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/ViewModels/SponsorshipConfirmationWindowViewModel.cs b/IposiGospodDemo/ViewModels/SponsorshipConfirmationWindowViewModel.cs
new file mode 100644
index 0000000..f2ecf1b
--- /dev/null
+++ b/IposiGospodDemo/ViewModels/SponsorshipConfirmationWindowViewModel.cs
@@ -0,0 +1,17 @@
+using System;
+using IposiGospodDemo.Context;
+
+namespace IposiGospodDemo.ViewModels;
+
+public class SponsorshipConfirmationWindowViewModel : ViewModelBase
+{
+ public User SupportedRunner { get; set; }
+ public decimal Amount { get; set; }
+ public String CharityName { get; set; }
+ public SponsorshipConfirmationWindowViewModel(User user, decimal amount, String charityName)
+ {
+ SupportedRunner = user;
+ Amount = amount;
+ CharityName = charityName;
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/ViewModels/ViewModelBase.cs b/IposiGospodDemo/ViewModels/ViewModelBase.cs
index e34965f..73af7b4 100644
--- a/IposiGospodDemo/ViewModels/ViewModelBase.cs
+++ b/IposiGospodDemo/ViewModels/ViewModelBase.cs
@@ -1,7 +1,7 @@
-using CommunityToolkit.Mvvm.ComponentModel;
+using ReactiveUI;
namespace IposiGospodDemo.ViewModels;
-public class ViewModelBase : ObservableObject
+public class ViewModelBase : ReactiveObject
{
}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/AdministratorMenuWindow.axaml b/IposiGospodDemo/Views/AdministratorMenuWindow.axaml
new file mode 100644
index 0000000..a2be77c
--- /dev/null
+++ b/IposiGospodDemo/Views/AdministratorMenuWindow.axaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/AdministratorMenuWindow.axaml.cs b/IposiGospodDemo/Views/AdministratorMenuWindow.axaml.cs
new file mode 100644
index 0000000..67e4d44
--- /dev/null
+++ b/IposiGospodDemo/Views/AdministratorMenuWindow.axaml.cs
@@ -0,0 +1,27 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class AdministratorMenuWindow : Window
+{
+ public AdministratorMenuWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MainWindow().Show();
+ Close();
+ }
+
+ private void Logout_OnClick(object? sender, RoutedEventArgs e)
+ {
+ Session.User = null;
+ new MainWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/BMICalculatorWindow.axaml b/IposiGospodDemo/Views/BMICalculatorWindow.axaml
new file mode 100644
index 0000000..6f704a3
--- /dev/null
+++ b/IposiGospodDemo/Views/BMICalculatorWindow.axaml
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/BMICalculatorWindow.axaml.cs b/IposiGospodDemo/Views/BMICalculatorWindow.axaml.cs
new file mode 100644
index 0000000..8614a13
--- /dev/null
+++ b/IposiGospodDemo/Views/BMICalculatorWindow.axaml.cs
@@ -0,0 +1,80 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class BMICalculatorWindow : Window
+{
+ public BMICalculatorWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MoreInformationWindow().Show();
+ Close();
+ }
+
+ private void GenderSelectionChanged(object sender, RoutedEventArgs e)
+ {
+ if (sender == MaleButton)
+ {
+ MaleButton.IsChecked = true;
+ MaleButton.BorderThickness = new Thickness(5);
+ FemaleButton.IsChecked = false;
+ FemaleButton.BorderThickness = new Thickness(2);
+ }
+ else
+ {
+ FemaleButton.IsChecked = true;
+ FemaleButton.BorderThickness = new Thickness(5);
+ MaleButton.IsChecked = false;
+ MaleButton.BorderThickness = new Thickness(2);
+ }
+ }
+
+ private void Calculate_OnClick(object? sender, RoutedEventArgs e)
+ {
+ if (!double.TryParse(UserWeight.Text, out double weight) ||
+ !double.TryParse(UserHeight.Text, out double heightCm))
+ {
+ TextResult.Text = "Некорректные данные";
+ NumberResult.Text = "Ошибка";
+ return;
+ }
+
+ double heightM = heightCm / 100.0;
+ double bmi = weight / (heightM * heightM);
+ NumberResult.Text = bmi.ToString("F1");
+
+ LessTriangle.IsVisible = false;
+ GoodTriangle.IsVisible = false;
+ MoreTriangle.IsVisible = false;
+ BadTriangle.IsVisible = false;
+
+ if (bmi < 18.5)
+ {
+ TextResult.Text = "Недостаточный";
+ LessTriangle.IsVisible = true;
+ }
+ else if (bmi >= 18.5 && bmi <= 24.9)
+ {
+ TextResult.Text = "Здоровый";
+ GoodTriangle.IsVisible = true;
+ }
+ else if (bmi >= 25 && bmi <= 29.9)
+ {
+ TextResult.Text = "Избыточный";
+ MoreTriangle.IsVisible = true;
+ }
+ else
+ {
+ TextResult.Text = "Ожирение";
+ BadTriangle.IsVisible = true;
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/BMRCalculatorWindow.axaml b/IposiGospodDemo/Views/BMRCalculatorWindow.axaml
new file mode 100644
index 0000000..c503a31
--- /dev/null
+++ b/IposiGospodDemo/Views/BMRCalculatorWindow.axaml
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/BMRCalculatorWindow.axaml.cs b/IposiGospodDemo/Views/BMRCalculatorWindow.axaml.cs
new file mode 100644
index 0000000..eb50ad7
--- /dev/null
+++ b/IposiGospodDemo/Views/BMRCalculatorWindow.axaml.cs
@@ -0,0 +1,72 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class BMRCalculatorWindow : Window
+{
+ public BMRCalculatorWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MoreInformationWindow().Show();
+ Close();
+ }
+
+ private void GenderSelectionChanged(object sender, RoutedEventArgs e)
+ {
+ if (sender == MaleButton)
+ {
+ MaleButton.IsChecked = true;
+ MaleButton.BorderThickness = new Thickness(5);
+ FemaleButton.IsChecked = false;
+ FemaleButton.BorderThickness = new Thickness(2);
+ }
+ else
+ {
+ FemaleButton.IsChecked = true;
+ FemaleButton.BorderThickness = new Thickness(5);
+ MaleButton.IsChecked = false;
+ MaleButton.BorderThickness = new Thickness(2);
+ }
+ }
+
+ private void Calculate_OnClick(object? sender, RoutedEventArgs e)
+ {
+ if (!double.TryParse(UserWeight.Text, out double weight) ||
+ !double.TryParse(UserHeight.Text, out double height) ||
+ !double.TryParse(UserAge.Text, out double age))
+ {
+ NumberResult.Text = "Ошибка ввода";
+ return;
+ }
+
+ double bmr;
+ if (MaleButton.IsChecked == true)
+ {
+ bmr = 66 + (13.7 * weight) + (5 * height) - (6.8 * age);
+ }
+ else
+ {
+ bmr = 655 + (9.6 * weight) + (1.8 * height) - (4.7 * age);
+ }
+
+ NumberResult.Text = bmr.ToString("F1") + " ккал";
+
+ ChearActive.Text = (bmr * 1.2).ToString("F1");
+ MiniActive.Text = (bmr * 1.375).ToString("F1");
+ MidActive.Text = (bmr * 1.55).ToString("F1");
+ StrongActive.Text = (bmr * 1.725).ToString("F1");
+ MaxActive.Text = (bmr * 1.9).ToString("F1");
+ }
+
+ private void OpenBMRInfoWindow_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new BMRInfoWindow().Show();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/BMRInfoWindow.axaml b/IposiGospodDemo/Views/BMRInfoWindow.axaml
new file mode 100644
index 0000000..bccd772
--- /dev/null
+++ b/IposiGospodDemo/Views/BMRInfoWindow.axaml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/BMRInfoWindow.axaml.cs b/IposiGospodDemo/Views/BMRInfoWindow.axaml.cs
new file mode 100644
index 0000000..1001cf1
--- /dev/null
+++ b/IposiGospodDemo/Views/BMRInfoWindow.axaml.cs
@@ -0,0 +1,13 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class BMRInfoWindow : Window
+{
+ public BMRInfoWindow()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/CharityInfoWindow.axaml b/IposiGospodDemo/Views/CharityInfoWindow.axaml
new file mode 100644
index 0000000..9df6902
--- /dev/null
+++ b/IposiGospodDemo/Views/CharityInfoWindow.axaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/CharityInfoWindow.axaml.cs b/IposiGospodDemo/Views/CharityInfoWindow.axaml.cs
new file mode 100644
index 0000000..70c8837
--- /dev/null
+++ b/IposiGospodDemo/Views/CharityInfoWindow.axaml.cs
@@ -0,0 +1,20 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Markup.Xaml;
+using IposiGospodDemo.Context;
+using IposiGospodDemo.ViewModels;
+
+namespace IposiGospodDemo.Views;
+
+public partial class CharityInfoWindow : Window
+{
+ public CharityInfoWindow()
+ {
+ InitializeComponent();
+ }
+
+ public CharityInfoWindow(Charity charity) : this()
+ {
+ DataContext = new CharityInfoViewModel(charity);
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/ContactsWindow.axaml b/IposiGospodDemo/Views/ContactsWindow.axaml
new file mode 100644
index 0000000..c1f9ad7
--- /dev/null
+++ b/IposiGospodDemo/Views/ContactsWindow.axaml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+ Телефон:
+
+
+ +55 11 9988 7766
+
+
+
+
+ Email:
+
+
+ coordinators@marathonskills.org
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/ContactsWindow.axaml.cs b/IposiGospodDemo/Views/ContactsWindow.axaml.cs
new file mode 100644
index 0000000..4997a83
--- /dev/null
+++ b/IposiGospodDemo/Views/ContactsWindow.axaml.cs
@@ -0,0 +1,19 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class ContactsWindow : Window
+{
+ public ContactsWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void CloseWindow_OnClick(object? sender, RoutedEventArgs e)
+ {
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/CoordinatorMenuWindow.axaml b/IposiGospodDemo/Views/CoordinatorMenuWindow.axaml
new file mode 100644
index 0000000..5b6d784
--- /dev/null
+++ b/IposiGospodDemo/Views/CoordinatorMenuWindow.axaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/CoordinatorMenuWindow.axaml.cs b/IposiGospodDemo/Views/CoordinatorMenuWindow.axaml.cs
new file mode 100644
index 0000000..d1a8b33
--- /dev/null
+++ b/IposiGospodDemo/Views/CoordinatorMenuWindow.axaml.cs
@@ -0,0 +1,27 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class CoordinatorMenuWindow : Window
+{
+ public CoordinatorMenuWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MainWindow().Show();
+ Close();
+ }
+
+ private void Logout_OnClick(object? sender, RoutedEventArgs e)
+ {
+ Session.User = null;
+ new MainWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/EditRunnerProfileWindow.axaml b/IposiGospodDemo/Views/EditRunnerProfileWindow.axaml
new file mode 100644
index 0000000..41353fb
--- /dev/null
+++ b/IposiGospodDemo/Views/EditRunnerProfileWindow.axaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/EditRunnerProfileWindow.axaml.cs b/IposiGospodDemo/Views/EditRunnerProfileWindow.axaml.cs
new file mode 100644
index 0000000..6b88ba6
--- /dev/null
+++ b/IposiGospodDemo/Views/EditRunnerProfileWindow.axaml.cs
@@ -0,0 +1,27 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class EditRunnerProfileWindow : Window
+{
+ public EditRunnerProfileWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new RunnerMenuWindow().Show();
+ Close();
+ }
+
+ private void Logout_OnClick(object? sender, RoutedEventArgs e)
+ {
+ Session.User = null;
+ new MainWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/ListOfCharitiesWindow.axaml b/IposiGospodDemo/Views/ListOfCharitiesWindow.axaml
new file mode 100644
index 0000000..f8ffd43
--- /dev/null
+++ b/IposiGospodDemo/Views/ListOfCharitiesWindow.axaml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/ListOfCharitiesWindow.axaml.cs b/IposiGospodDemo/Views/ListOfCharitiesWindow.axaml.cs
new file mode 100644
index 0000000..37162f0
--- /dev/null
+++ b/IposiGospodDemo/Views/ListOfCharitiesWindow.axaml.cs
@@ -0,0 +1,22 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+using IposiGospodDemo.ViewModels;
+
+namespace IposiGospodDemo.Views;
+
+public partial class ListOfCharitiesWindow : Window
+{
+ public ListOfCharitiesWindow()
+ {
+ InitializeComponent();
+ DataContext = new ListOfCharitiesWindowViewModel();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MoreInformationWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/LoginWindow.axaml b/IposiGospodDemo/Views/LoginWindow.axaml
new file mode 100644
index 0000000..a39fb8b
--- /dev/null
+++ b/IposiGospodDemo/Views/LoginWindow.axaml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/LoginWindow.axaml.cs b/IposiGospodDemo/Views/LoginWindow.axaml.cs
new file mode 100644
index 0000000..b193666
--- /dev/null
+++ b/IposiGospodDemo/Views/LoginWindow.axaml.cs
@@ -0,0 +1,85 @@
+using System;
+using System.Linq;
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+using IposiGospodDemo.Context;
+using IposiGospodDemo.Helpers;
+using Microsoft.EntityFrameworkCore;
+
+namespace IposiGospodDemo.Views;
+
+public partial class LoginWindow : Window
+{
+ public LoginWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MainWindow().Show();
+ Close();
+ }
+
+ private void Login_OnClick(object? sender, RoutedEventArgs e)
+ {
+ User user = DbHelper.Database.Users
+ .Include(u => u.Role)
+ .Single(u =>
+ EmailBox.Text != null && u.Email == EmailBox.Text.Trim() &&
+ PasswordBox.Text != null && u.Password == PasswordBox.Text.Trim());
+
+ Session.User = user;
+ Console.WriteLine("USERROLEID: " + user.Role.RoleId.ToString());
+ switch (user.Role.RoleId)
+ {
+ case 'R':
+ new RunnerMenuWindow().Show();
+ break;
+ case 'C':
+ new CoordinatorMenuWindow().Show();
+ break;
+ case 'A':
+ new AdministratorMenuWindow().Show();
+ break;
+ }
+ Close();
+ // try
+ // {
+ // User user = DbHelper.Database.Users
+ // .Include(u => u.Role)
+ // .Single(u =>
+ // EmailBox.Text != null && u.Email == EmailBox.Text.Trim() &&
+ // PasswordBox.Text != null && u.Password == PasswordBox.Text.Trim());
+ //
+ // Session.User = user;
+ // Console.WriteLine("USERROLEID: " + user.Role.RoleId.ToString());
+ // switch (user.Role.RoleId)
+ // {
+ // case 'R':
+ // new RunnerMenuWindow().Show();
+ // break;
+ // case 'C':
+ // new CoordinatorMenuWindow().Show();
+ // break;
+ // case 'A':
+ // new AdministratorMenuWindow().Show();
+ // break;
+ // }
+ // Close();
+ // }
+ // catch (Exception exception)
+ // {
+ // Console.WriteLine("Unlucky");
+ // Console.WriteLine(exception.Message);
+ // }
+ }
+
+ private void Cancel_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MainWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/MainWindow.axaml b/IposiGospodDemo/Views/MainWindow.axaml
index fa1988e..9a4d145 100644
--- a/IposiGospodDemo/Views/MainWindow.axaml
+++ b/IposiGospodDemo/Views/MainWindow.axaml
@@ -3,18 +3,51 @@
xmlns:vm="using:IposiGospodDemo.ViewModels"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ xmlns:local="using:IposiGospodDemo"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="IposiGospodDemo.Views.MainWindow"
x:DataType="vm:MainWindowViewModel"
Icon="/Assets/avalonia-logo.ico"
- Title="IposiGospodDemo">
+ Title="IposiGospodDemo" Background="White">
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/MainWindow.axaml.cs b/IposiGospodDemo/Views/MainWindow.axaml.cs
index aa93bc5..d045096 100644
--- a/IposiGospodDemo/Views/MainWindow.axaml.cs
+++ b/IposiGospodDemo/Views/MainWindow.axaml.cs
@@ -1,4 +1,8 @@
+using System;
+using System.IO;
+using System.Reflection;
using Avalonia.Controls;
+using Avalonia.Interactivity;
namespace IposiGospodDemo.Views;
@@ -7,5 +11,36 @@ public partial class MainWindow : Window
public MainWindow()
{
InitializeComponent();
+ Loaded += OnLoaded;
+ }
+
+ private void OnLoaded(object? sender, Avalonia.Interactivity.RoutedEventArgs e)
+ {
+ string mainPath = Assembly.GetEntryAssembly().Location;
+ Session.AssetsPath = string.Concat(Path.GetDirectoryName(mainPath)!, "\\Assets\\");
+ }
+
+ private void SwapToLoginWindow_OnClick(object? sender, RoutedEventArgs e)
+ {
+ try
+ {
+ new LoginWindow().Show();
+ Close();
+ } catch (Exception exception)
+ {
+ Console.WriteLine("Unlucky, something went wrong by going to login window");
+ }
+ }
+
+ private void SwapToSponsorARunnerWindow_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new SponsorARunnerWindow().Show();
+ Close();
+ }
+
+ private void SwapToMoreInformationWindow_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MoreInformationWindow().Show();
+ Close();
}
}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/MoreInformationWindow.axaml b/IposiGospodDemo/Views/MoreInformationWindow.axaml
new file mode 100644
index 0000000..aab8eb0
--- /dev/null
+++ b/IposiGospodDemo/Views/MoreInformationWindow.axaml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/MoreInformationWindow.axaml.cs b/IposiGospodDemo/Views/MoreInformationWindow.axaml.cs
new file mode 100644
index 0000000..7d43683
--- /dev/null
+++ b/IposiGospodDemo/Views/MoreInformationWindow.axaml.cs
@@ -0,0 +1,38 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class MoreInformationWindow : Window
+{
+ public MoreInformationWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MainWindow().Show();
+ Close();
+ }
+
+ private void SwapToBMICalculatorWindow_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new BMICalculatorWindow().Show();
+ Close();
+ }
+
+ private void SwapToBMRCalculatorWindow_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new BMRCalculatorWindow().Show();
+ Close();
+ }
+
+ private void SwapToListOfCharitiesWindow_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new ListOfCharitiesWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/MyResultsWindow.axaml b/IposiGospodDemo/Views/MyResultsWindow.axaml
new file mode 100644
index 0000000..3b308b2
--- /dev/null
+++ b/IposiGospodDemo/Views/MyResultsWindow.axaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/MyResultsWindow.axaml.cs b/IposiGospodDemo/Views/MyResultsWindow.axaml.cs
new file mode 100644
index 0000000..34802c4
--- /dev/null
+++ b/IposiGospodDemo/Views/MyResultsWindow.axaml.cs
@@ -0,0 +1,27 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class MyResultsWindow : Window
+{
+ public MyResultsWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new RunnerMenuWindow().Show();
+ Close();
+ }
+
+ private void Logout_OnClick(object? sender, RoutedEventArgs e)
+ {
+ Session.User = null;
+ new MainWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/MySponsorshipWindow.axaml b/IposiGospodDemo/Views/MySponsorshipWindow.axaml
new file mode 100644
index 0000000..8f9adec
--- /dev/null
+++ b/IposiGospodDemo/Views/MySponsorshipWindow.axaml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/MySponsorshipWindow.axaml.cs b/IposiGospodDemo/Views/MySponsorshipWindow.axaml.cs
new file mode 100644
index 0000000..58401bd
--- /dev/null
+++ b/IposiGospodDemo/Views/MySponsorshipWindow.axaml.cs
@@ -0,0 +1,27 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class MySponsorshipWindow : Window
+{
+ public MySponsorshipWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new RunnerMenuWindow().Show();
+ Close();
+ }
+
+ private void Logout_OnClick(object? sender, RoutedEventArgs e)
+ {
+ Session.User = null;
+ new MainWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/RegistrationForAnEventWindow.axaml b/IposiGospodDemo/Views/RegistrationForAnEventWindow.axaml
new file mode 100644
index 0000000..b35e983
--- /dev/null
+++ b/IposiGospodDemo/Views/RegistrationForAnEventWindow.axaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/RegistrationForAnEventWindow.axaml.cs b/IposiGospodDemo/Views/RegistrationForAnEventWindow.axaml.cs
new file mode 100644
index 0000000..425cb87
--- /dev/null
+++ b/IposiGospodDemo/Views/RegistrationForAnEventWindow.axaml.cs
@@ -0,0 +1,27 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class RegistrationForAnEventWindow : Window
+{
+ public RegistrationForAnEventWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new RunnerMenuWindow().Show();
+ Close();
+ }
+
+ private void Logout_OnClick(object? sender, RoutedEventArgs e)
+ {
+ Session.User = null;
+ new MainWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/RunnerMenuWindow.axaml b/IposiGospodDemo/Views/RunnerMenuWindow.axaml
new file mode 100644
index 0000000..55e5f05
--- /dev/null
+++ b/IposiGospodDemo/Views/RunnerMenuWindow.axaml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/RunnerMenuWindow.axaml.cs b/IposiGospodDemo/Views/RunnerMenuWindow.axaml.cs
new file mode 100644
index 0000000..7d30982
--- /dev/null
+++ b/IposiGospodDemo/Views/RunnerMenuWindow.axaml.cs
@@ -0,0 +1,56 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class RunnerMenuWindow : Window
+{
+ public RunnerMenuWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MainWindow().Show();
+ Close();
+ }
+
+ private void Logout_OnClick(object? sender, RoutedEventArgs e)
+ {
+ Session.User = null;
+ new MainWindow().Show();
+ Close();
+ }
+
+ private void RegistrationOnMarathon_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new RegistrationForAnEventWindow().Show();
+ Close();
+ }
+
+ private void EditProfile_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new EditRunnerProfileWindow().Show();
+ Close();
+ }
+
+ private void Contacts_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new ContactsWindow().Show();
+ }
+
+ private void MyResults_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MyResultsWindow().Show();
+ Close();
+ }
+
+ private void MySponsor_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MySponsorshipWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/RunnerRegistrationWindow.axaml b/IposiGospodDemo/Views/RunnerRegistrationWindow.axaml
new file mode 100644
index 0000000..0af5cce
--- /dev/null
+++ b/IposiGospodDemo/Views/RunnerRegistrationWindow.axaml
@@ -0,0 +1,9 @@
+
+ Welcome to Avalonia!
+
diff --git a/IposiGospodDemo/Views/RunnerRegistrationWindow.axaml.cs b/IposiGospodDemo/Views/RunnerRegistrationWindow.axaml.cs
new file mode 100644
index 0000000..57c4914
--- /dev/null
+++ b/IposiGospodDemo/Views/RunnerRegistrationWindow.axaml.cs
@@ -0,0 +1,13 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class RunnerRegistrationWindow : Window
+{
+ public RunnerRegistrationWindow()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/SponsorARunnerWindow.axaml b/IposiGospodDemo/Views/SponsorARunnerWindow.axaml
new file mode 100644
index 0000000..96393f0
--- /dev/null
+++ b/IposiGospodDemo/Views/SponsorARunnerWindow.axaml
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/SponsorARunnerWindow.axaml.cs b/IposiGospodDemo/Views/SponsorARunnerWindow.axaml.cs
new file mode 100644
index 0000000..12ec786
--- /dev/null
+++ b/IposiGospodDemo/Views/SponsorARunnerWindow.axaml.cs
@@ -0,0 +1,95 @@
+using System;
+using System.Linq;
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using Avalonia.Markup.Xaml;
+using IposiGospodDemo.Context;
+using IposiGospodDemo.Helpers;
+using IposiGospodDemo.ViewModels;
+
+namespace IposiGospodDemo.Views;
+
+public partial class SponsorARunnerWindow : Window
+{
+ private SponsorARunnerWindowViewModel? _viewModel;
+
+ public SponsorARunnerWindow()
+ {
+ InitializeComponent();
+ DataContext = new SponsorARunnerWindowViewModel();
+ Loaded += OnLoaded;
+ }
+
+ private void OnLoaded(object? sender, Avalonia.Interactivity.RoutedEventArgs e)
+ {
+ _viewModel = (DataContext as SponsorARunnerWindowViewModel)!;
+ }
+
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MainWindow().Show();
+ Close();
+ }
+
+ private void Pay_OnClick(object? sender, RoutedEventArgs e)
+ {
+ string? SponsorName = _viewModel?.SponsorName;
+ string? CardOwner = _viewModel?.CardOwner;
+ string? CardNumber = _viewModel?.CardNumber;
+ string? Month = _viewModel?.Month;
+ string? Year = _viewModel?.Year;
+ string? Cvc = _viewModel?.Cvc;
+
+ if (_viewModel.SelectedRunner == null)
+ {
+ Console.WriteLine("Не выбран бегун");
+ return;
+ }
+
+ if (string.IsNullOrWhiteSpace(SponsorName) ||
+ string.IsNullOrWhiteSpace(CardOwner) ||
+ string.IsNullOrWhiteSpace(CardNumber) ||
+ string.IsNullOrWhiteSpace(Month) ||
+ string.IsNullOrWhiteSpace(Year) ||
+ string.IsNullOrWhiteSpace(Cvc))
+ {
+ Console.WriteLine("Ошибка: Заполните все поля!");
+ return;
+ }
+
+ if (!long.TryParse(CardNumber.Replace(" ", ""), out _) || CardNumber.Length < 16)
+ {
+ Console.WriteLine("Ошибка: Некорректный номер карты!");
+ return;
+ }
+
+ if (!int.TryParse(Month, out var month) || month < 1 || month > 12)
+ {
+ Console.WriteLine("Ошибка: Некорректный месяц!");
+ return;
+ }
+
+ if (!int.TryParse(Year, out var year))
+ {
+ Console.WriteLine("Ошибка: Некорректный год!");
+ return;
+ }
+
+ if (!int.TryParse(Cvc, out _) || Cvc.Length != 3)
+ {
+ Console.WriteLine("Ошибка: Некорректный CVC!");
+ return;
+ }
+
+ Sponsorship newSponsorship = new Sponsorship();
+ newSponsorship.SponsorName = SponsorName;
+ newSponsorship.Registration = _viewModel.SelectedRunner.Registrations.FirstOrDefault()!;
+ newSponsorship.Amount = _viewModel.Sum;
+ DbHelper.Database.Sponsorships.Add(newSponsorship);
+
+ new SponsorshipConfirmationWindow(_viewModel.SelectedRunner.EmailNavigation, _viewModel.Sum, _viewModel.SelectedCharity.CharityName).Show();
+ Close();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/SponsorRegistrationWindow.axaml b/IposiGospodDemo/Views/SponsorRegistrationWindow.axaml
new file mode 100644
index 0000000..b865afb
--- /dev/null
+++ b/IposiGospodDemo/Views/SponsorRegistrationWindow.axaml
@@ -0,0 +1,9 @@
+
+ Welcome to Avalonia!
+
diff --git a/IposiGospodDemo/Views/SponsorRegistrationWindow.axaml.cs b/IposiGospodDemo/Views/SponsorRegistrationWindow.axaml.cs
new file mode 100644
index 0000000..f840870
--- /dev/null
+++ b/IposiGospodDemo/Views/SponsorRegistrationWindow.axaml.cs
@@ -0,0 +1,13 @@
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Markup.Xaml;
+
+namespace IposiGospodDemo.Views;
+
+public partial class SponsorRegistrationWindow : Window
+{
+ public SponsorRegistrationWindow()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/IposiGospodDemo/Views/SponsorshipConfirmationWindow.axaml b/IposiGospodDemo/Views/SponsorshipConfirmationWindow.axaml
new file mode 100644
index 0000000..1293234
--- /dev/null
+++ b/IposiGospodDemo/Views/SponsorshipConfirmationWindow.axaml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/IposiGospodDemo/Views/SponsorshipConfirmationWindow.axaml.cs b/IposiGospodDemo/Views/SponsorshipConfirmationWindow.axaml.cs
new file mode 100644
index 0000000..3a040e5
--- /dev/null
+++ b/IposiGospodDemo/Views/SponsorshipConfirmationWindow.axaml.cs
@@ -0,0 +1,27 @@
+using System;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using IposiGospodDemo.Context;
+using IposiGospodDemo.ViewModels;
+
+namespace IposiGospodDemo.Views;
+
+public partial class SponsorshipConfirmationWindow : Window
+{
+ public SponsorshipConfirmationWindow()
+ {
+ InitializeComponent();
+ }
+
+ public SponsorshipConfirmationWindow(User user, decimal amount, String charityName)
+ {
+ InitializeComponent();
+ DataContext = new SponsorshipConfirmationWindowViewModel(user, amount, charityName);
+ }
+
+ private void GoBack_OnClick(object? sender, RoutedEventArgs e)
+ {
+ new MainWindow().Show();
+ Close();
+ }
+}
\ No newline at end of file