public decimal AddStudentByStoredProcedure(Student student) { using (var db = new SchoolContext()) { return(db.AddStudentUsingSp(student)); } }