public bool Edit(int id, int typeId, string name, char gender)
 {
     return(StudentDAL.Edit(id, typeId, name, gender));
 }
Example #2
0
 public static List<Student> Edit(Student student)
 {
     StudentDAL obj = new StudentDAL();
     return obj.Edit(student);
 }
Example #3
0
        public void Edit(Student entity)
        {
            StudentDAL dalObject = new StudentDAL();

            dalObject.Edit(entity);
        }