Keeping Order
This commit is contained in:
@@ -1,17 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.Models {
|
|
||||||
internal class Gemeinde {
|
|
||||||
public int Id { get; set; }
|
|
||||||
public string Name { get; set; }
|
|
||||||
|
|
||||||
public Gemeinde(int id, string name) {
|
|
||||||
Id = id;
|
|
||||||
Name = name;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
|
|
||||||
using CommunityToolkit.Mvvm.ComponentModel;
|
using CommunityToolkit.Mvvm.ComponentModel;
|
||||||
|
using Jugenddienst_Stunden.Types;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.Models {
|
namespace Jugenddienst_Stunden.Models
|
||||||
|
{
|
||||||
public class Hours : ObservableObject {
|
public class Hours : ObservableObject {
|
||||||
public string zeit;
|
public string zeit;
|
||||||
public string nominal;
|
public string nominal;
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.Models {
|
|
||||||
public class NominalWeek {
|
|
||||||
public int week_number;
|
|
||||||
public decimal hours;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.Models {
|
|
||||||
internal class Projekt {
|
|
||||||
public int Id { get; set; }
|
|
||||||
public string Name { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.Models {
|
|
||||||
public class TimeDay {
|
|
||||||
public int Day { get; set; }
|
|
||||||
public decimal Hours { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.Models {
|
|
||||||
internal class Timetable {
|
|
||||||
public List<TimetableEntry> timetable;
|
|
||||||
public decimal wochensumme;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.Models {
|
|
||||||
internal class TimetableEntry {
|
|
||||||
public List<TimeOnly>? von;
|
|
||||||
public List<TimeOnly>? bis;
|
|
||||||
public decimal summe { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
20
Jugenddienst Stunden/Types/Gemeinde.cs
Normal file
20
Jugenddienst Stunden/Types/Gemeinde.cs
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Jugenddienst_Stunden.Types
|
||||||
|
{
|
||||||
|
internal class Gemeinde
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
|
||||||
|
public Gemeinde(int id, string name)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
Name = name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
14
Jugenddienst Stunden/Types/NominalWeek.cs
Normal file
14
Jugenddienst Stunden/Types/NominalWeek.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Jugenddienst_Stunden.Types
|
||||||
|
{
|
||||||
|
public class NominalWeek
|
||||||
|
{
|
||||||
|
public int week_number;
|
||||||
|
public decimal hours;
|
||||||
|
}
|
||||||
|
}
|
||||||
14
Jugenddienst Stunden/Types/Projekt.cs
Normal file
14
Jugenddienst Stunden/Types/Projekt.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Jugenddienst_Stunden.Types
|
||||||
|
{
|
||||||
|
internal class Projekt
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
14
Jugenddienst Stunden/Types/TimeDay.cs
Normal file
14
Jugenddienst Stunden/Types/TimeDay.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Jugenddienst_Stunden.Types
|
||||||
|
{
|
||||||
|
public class TimeDay
|
||||||
|
{
|
||||||
|
public int Day { get; set; }
|
||||||
|
public decimal Hours { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
14
Jugenddienst Stunden/Types/Timetable.cs
Normal file
14
Jugenddienst Stunden/Types/Timetable.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Jugenddienst_Stunden.Types
|
||||||
|
{
|
||||||
|
internal class Timetable
|
||||||
|
{
|
||||||
|
public List<TimetableEntry> timetable;
|
||||||
|
public decimal wochensumme;
|
||||||
|
}
|
||||||
|
}
|
||||||
15
Jugenddienst Stunden/Types/TimetableEntry.cs
Normal file
15
Jugenddienst Stunden/Types/TimetableEntry.cs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Jugenddienst_Stunden.Types
|
||||||
|
{
|
||||||
|
internal class TimetableEntry
|
||||||
|
{
|
||||||
|
public List<TimeOnly>? von;
|
||||||
|
public List<TimeOnly>? bis;
|
||||||
|
public decimal summe { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,10 +6,11 @@ using Microsoft.Maui.Networking;
|
|||||||
using ZXing.Net.Maui;
|
using ZXing.Net.Maui;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using Jugenddienst_Stunden.Models;
|
using Jugenddienst_Stunden.Types;
|
||||||
|
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.ViewModels {
|
namespace Jugenddienst_Stunden.ViewModels
|
||||||
|
{
|
||||||
internal class StundenViewModel : ObservableObject {
|
internal class StundenViewModel : ObservableObject {
|
||||||
public string Name => AppInfo.Name;
|
public string Name => AppInfo.Name;
|
||||||
public string Surname => AppInfo.VersionString;
|
public string Surname => AppInfo.VersionString;
|
||||||
@@ -42,7 +43,7 @@ namespace Jugenddienst_Stunden.ViewModels {
|
|||||||
// get => _hour.zeit_total_daily;
|
// get => _hour.zeit_total_daily;
|
||||||
//}
|
//}
|
||||||
|
|
||||||
public List<Models.TimeDay> ZeitTotalDaily {
|
public List<TimeDay> ZeitTotalDaily {
|
||||||
get => _hour.zeit_total_daily_api;
|
get => _hour.zeit_total_daily_api;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user