Add repos + repo interfaces + models + ioc

This commit is contained in:
2026-01-22 15:36:12 +01:00
parent 677e74df10
commit 7bf270985b
31 changed files with 965 additions and 18 deletions

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsByAircraft
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsByDz
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsByGear
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsByJumpType
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsByYear
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsByYearByJumpType
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsForLastMonthByDz
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsForLastMonthByJumpType
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsForLastYearByDz
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class StatsForLastYearByJumpType
{
public string Label { get; set; }
public string Label2 { get; set; }
public int Nb { get; set; }
public int Id { get; set; }
public User User { get; set; }
}
}