/// <summary> /// 编辑PropertyInfo /// </summary> protected virtual async Task Update(PropertyInfoEditDto input) { //TODO:更新前的逻辑判断,是否允许更新 var entity = await _entityRepository.GetAsync(input.Id.Value); input.MapTo(entity); // ObjectMapper.Map(input, entity); await _entityRepository.UpdateAsync(entity); }
/// <summary> /// 新增PropertyInfo /// </summary> protected virtual async Task <PropertyInfoEditDto> Create(PropertyInfoEditDto input) { //TODO:新增前的逻辑判断,是否允许新增 // var entity = ObjectMapper.Map <PropertyInfo>(input); var entity = input.MapTo <PropertyInfo>(); entity = await _entityRepository.InsertAsync(entity); return(entity.MapTo <PropertyInfoEditDto>()); }