添加项目文件。
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class AssignmentAttachmentRepository : Repository<AssignmentAttachment>, IRepository<AssignmentAttachment>
|
||||
{
|
||||
public AssignmentAttachmentRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/AssignmentClassRepository.cs
Normal file
14
TechHelper.Server/Repository/AssignmentClassRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class AssignmentClassRepository : Repository<AssignmentClass>, IRepository<AssignmentClass>
|
||||
{
|
||||
public AssignmentClassRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/AssignmentGroupRepository.cs
Normal file
14
TechHelper.Server/Repository/AssignmentGroupRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class AssignmentGroupRepository : Repository<AssignmentGroup>, IRepository<AssignmentGroup>
|
||||
{
|
||||
public AssignmentGroupRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/AssignmentQuestionRepository.cs
Normal file
14
TechHelper.Server/Repository/AssignmentQuestionRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class AssignmentQuestionRepository : Repository<AssignmentQuestion>, IRepository<AssignmentQuestion>
|
||||
{
|
||||
public AssignmentQuestionRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/AssignmentRepository.cs
Normal file
14
TechHelper.Server/Repository/AssignmentRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class AssignmentRepository : Repository<Assignment>, IRepository<Assignment>
|
||||
{
|
||||
public AssignmentRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
15
TechHelper.Server/Repository/ClassRepository.cs
Normal file
15
TechHelper.Server/Repository/ClassRepository.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Entities.Contracts;
|
||||
using Entities.DTO;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class ClassRepository : Repository<Class>, IRepository<Class>
|
||||
{
|
||||
public ClassRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/ClassStudentRepository.cs
Normal file
14
TechHelper.Server/Repository/ClassStudentRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class ClassStudentRepository : Repository<ClassStudent>, IRepository<ClassStudent>
|
||||
{
|
||||
public ClassStudentRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/ClassTeacherRepository.cs
Normal file
14
TechHelper.Server/Repository/ClassTeacherRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class ClassTeacherRepository : Repository<ClassTeacher>, IRepository<ClassTeacher>
|
||||
{
|
||||
public ClassTeacherRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/QuestionRepository.cs
Normal file
14
TechHelper.Server/Repository/QuestionRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class QuestionRepository : Repository<Question>, IRepository<Question>
|
||||
{
|
||||
public QuestionRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/SubmissionDetailRepository.cs
Normal file
14
TechHelper.Server/Repository/SubmissionDetailRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class SubmissionDetailRepository : Repository<SubmissionDetail>, IRepository<SubmissionDetail>
|
||||
{
|
||||
public SubmissionDetailRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
14
TechHelper.Server/Repository/SubmissionRepository.cs
Normal file
14
TechHelper.Server/Repository/SubmissionRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Entities.Contracts;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using SharedDATA.Api;
|
||||
using TechHelper.Context;
|
||||
|
||||
namespace TechHelper.Repository
|
||||
{
|
||||
public class SubmissionRepository : Repository<Submission>, IRepository<Submission>
|
||||
{
|
||||
public SubmissionRepository(ApplicationContext dbContext) : base(dbContext)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user