Example #1
0
        public void InsertMarks(int Id, float physics, float chemistry, float mathematics, float computing, float english)
        {
            StudentMarkRepository marks = new StudentMarkRepository();

            marks.AddMark(Id, physics, chemistry, mathematics, computing, english);
        }
Example #2
0
        private void InsertStudent(int rollNo, string firstName, string lastName, string ClassName, String section)
        {
            StudentMarkRepository student = new StudentMarkRepository();

            student.AddStudent(rollNo, firstName, lastName, ClassName, section);
        }