Example #1
0
 public void Update(Student student)
 {
     Dal.Entities.Student dalStudent = AutoMapper.Mapper.Map <Dal.Entities.Student>(student);
     _studentRepository.UpdateStudent(dalStudent);
 }
Example #2
0
 public int Insert(Student student)
 {
     Dal.Entities.Student dalStudent = AutoMapper.Mapper.Map <Dal.Entities.Student>(student);
     return(_studentRepository.InsertStudent(dalStudent));
 }