コード例 #1
0
ファイル: UserAppService.cs プロジェクト: ousoft/Oyang
        public void Update(UpdateInputDto input)
        {
            var entity = _userRepository.Find(input.Id);

            _objectMapper.Map(input, entity);
            _userRepository.Add(entity);
        }
コード例 #2
0
 public void Update(UpdateInputDto input)
 {
     _userAppService.Update(input);
 }
コード例 #3
0
ファイル: UserAppService.cs プロジェクト: ousoft/Oyang
 public void Update(UpdateInputDto input)
 {
     _repository.Update(input);
 }
コード例 #4
0
        public void Update(UpdateInputDto input)
        {
            var entity = DbContext.Set <UserEntity>().Find(input.Id);

            Mapper.Map(input, entity);
        }
コード例 #5
0
 public void Update(UpdateInputDto input)
 {
     ValidationObject.Validate(string.IsNullOrWhiteSpace(input.Name), "名称不能为空");
     ValidationObject.Validate(_repository.ExistRole(input.Id, input.Name), "名称已存在");
     _repository.Update(input);
 }