예제 #1
0
        public Guid?Update(EvaluationUpdateModel evaluation)
        {
            var evaluationEntity = mapper.Map <EvaluationEntity>(evaluation);

            return(evaluationRepository.Update(evaluationEntity));
        }
예제 #2
0
 public ActionResult <Guid> Update(EvaluationUpdateModel evaluation)
 {
     return(evaluationFacade.Update(evaluation));
 }