protected virtual async Task Update(ComasEditDto input) { //TODO:更新前的逻辑判断,是否允许更新 var entity = await _entityRepository.GetAsync(input.Id.Value); input.MapTo(entity); // ObjectMapper.Map(input, entity); await _entityRepository.UpdateAsync(entity); }
protected virtual async Task <ComasEditDto> Create(ComasEditDto input) { //TODO:新增前的逻辑判断,是否允许新增 // var entity = ObjectMapper.Map <Comas>(input); var entity = input.MapTo <Comas>(); entity = await _entityRepository.InsertAsync(entity); return(entity.MapTo <ComasEditDto>()); }
public async Task <GetComasForEditOutput> GetForEdit(NullableIdDto <int> input) { var output = new GetComasForEditOutput(); ComasEditDto editDto; if (input.Id.HasValue) { var entity = await _entityRepository.GetAsync(input.Id.Value); editDto = entity.MapTo <ComasEditDto>(); //comasEditDto = ObjectMapper.Map<List<comasEditDto>>(entity); } else { editDto = new ComasEditDto(); } output.Comas = editDto; return(output); }