add DAO
This commit is contained in:
parent
219df2c79d
commit
7fe7ce1b3d
17
presence/DAO/Attedances.cs
Normal file
17
presence/DAO/Attedances.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace presence.DAO
|
||||||
|
{
|
||||||
|
internal class Attedances
|
||||||
|
{
|
||||||
|
public DateTime Date { get; set; }
|
||||||
|
public int IdSubjectGroup { get; set; }
|
||||||
|
public int IdStudents { get; set; }
|
||||||
|
public int IdGroup { get; set; }
|
||||||
|
public int IdVisit { get; set; }
|
||||||
|
}
|
||||||
|
}
|
12
presence/DAO/GroupSubjest.cs
Normal file
12
presence/DAO/GroupSubjest.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace presence.DAO
|
||||||
|
{
|
||||||
|
internal class GroupSubjest
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
12
presence/DAO/Groups.cs
Normal file
12
presence/DAO/Groups.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace presence.DAO
|
||||||
|
{
|
||||||
|
internal class Group
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
15
presence/DAO/Semesters.cs
Normal file
15
presence/DAO/Semesters.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace presence.DAO
|
||||||
|
{
|
||||||
|
internal class Semesters
|
||||||
|
{
|
||||||
|
public int IdSemester { get; set; }
|
||||||
|
public DateTime StartTime { get; set; }
|
||||||
|
public DateTime EndTime { get; set; }
|
||||||
|
}
|
||||||
|
}
|
12
presence/DAO/Students.cs
Normal file
12
presence/DAO/Students.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace presence.DAO
|
||||||
|
{
|
||||||
|
internal class Students
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
12
presence/DAO/Subjects.cs
Normal file
12
presence/DAO/Subjects.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace presence.DAO
|
||||||
|
{
|
||||||
|
internal class Subjects
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
14
presence/DAO/Visits.cs
Normal file
14
presence/DAO/Visits.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace presence.DAO
|
||||||
|
{
|
||||||
|
internal class Visit
|
||||||
|
{
|
||||||
|
public int IdVisit { get; set; }
|
||||||
|
public string NameVisit { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -6,4 +6,18 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.10" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="DAO\" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
Loading…
Reference in New Issue
Block a user