예제 #1
0
 public long Add(DtoStudentAddRequest addRequest)
 {
     return(_studentAppService.Add(addRequest));
 }
예제 #2
0
        public long Add(DtoStudentAddRequest addRequest)
        {
            var stuEntity = AutoMapperHelper.Map <DtoStudentAddRequest, StudentEntity>(addRequest);

            return(_studentRepos.Add(stuEntity));
        }