public static void AddGrade(int schoolId, string name) { var model = new Grade { Name = name, schoolId = schoolId }; _gradeService.Add(model); }