コード例 #1
0
 public IResult Add(Education education)
 {
     _educationDal.Add(education);
     return(new SuccessResult(Messages.EducationAdded));
 }
コード例 #2
0
 public void Add(Education education)
 {
     _educationDal.Add(education);
 }
コード例 #3
0
 public Education Add(Education entity)
 {
     return(_educationDal.Add(entity));
 }