Add project files.
This commit is contained in:
12
Entities/Pause.cs
Normal file
12
Entities/Pause.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace hanyadikhetvan.Entities
|
||||
{
|
||||
public class Pause
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int WeeklyTimeSpanId { get; set; }
|
||||
public DateTime Startdate { get; set; }
|
||||
public DateTime Enddate { get; set; }
|
||||
}
|
||||
}
|
13
Entities/WeeklyTimeSpan.cs
Normal file
13
Entities/WeeklyTimeSpan.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace hanyadikhetvan.Entities
|
||||
{
|
||||
public class WeeklyTimeSpan
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public DateTime Startdate { get; set; }
|
||||
|
||||
public virtual ICollection<Pause> Pauses { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user