public ProjectRepository(ProjectsDatabaseContext context)
 {
     _context = context;
 }
Esempio n. 2
0
 public ProjectsRepository(ProjectsDatabaseContext databaseContext)
 {
     this.databaseContext = databaseContext;
 }
 public ProjectsController(ProjectsDatabaseContext context, FileService fileService)
 {
     projectRepository = new ProjectRepository(context);
     _fileService      = fileService;
 }