big day behind me
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-05-19 04:33:53 +02:00
parent 4d4455679c
commit 8347b10401
36 changed files with 2291 additions and 284 deletions

View File

@ -0,0 +1,12 @@
using System;
namespace HanyadikHetVan.DTO
{
public class PauseDTO
{
public int Id { get; set; }
public int WeeklyTimeSpanId { get; set; }
public DateTime Startdate { get; set; }
public DateTime Enddate { get; set; }
}
}

View File

@ -0,0 +1,7 @@
namespace HanyadikHetVan.DTO
{
public class PurseDTO
{
public int Balance { get; set; }
}
}

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace HanyadikHetVan.DTO
{
public class WeeklyTimeSpanDTO
{
public int Id { get; set; }
public DateTime Startdate { get; set; }
public virtual ICollection<PauseDTO> Pauses { get; set; }
public int CurrentWeek
{
get
{
TimeSpan allPause = this.Pauses.Aggregate(TimeSpan.Zero, (sumSoFar, nextPause) => sumSoFar + (nextPause.Enddate - nextPause.Startdate));
TimeSpan wtsLength = DateTime.Now - this.Startdate;
return (wtsLength - allPause).Days / 7;
}
}
}
}