Changed parts of how data project stucture

This commit is contained in:
Giovani
2019-04-22 22:46:39 +00:00
parent 4e4fa572b7
commit 4074d101b2
13 changed files with 23 additions and 99 deletions

View File

@@ -13,9 +13,9 @@ namespace BrightGlimmer.Api.Controllers
public class StudentController : ControllerBase
{
// private readonly IMediator mediator;
private readonly SqliteStudentRepository studentRepository;
private readonly StudentRepository studentRepository;
public StudentController(SqliteStudentRepository studentRepository)
public StudentController(StudentRepository studentRepository)
{
this.studentRepository = studentRepository;
}