public StudentsController(SchoolContext context, IStudentDataService studentService, IPictureDataService pictureService)
 {
     this.context        = context;
     this.studentService = studentService;
     this.pictureService = pictureService;
 }
 public StudentsController(SchoolContext db, IStudentDataService studentService, IPictureDataService pictureService)
 {
     this.db             = db;
     this.studentService = studentService;
     this.pictureService = pictureService;
 }