protected virtual async Task Update(TP_TaskLogEntityEditDto input)
        {
            //TODO:更新前的逻辑判断,是否允许更新

            var entity = await _tP_TaskLogEntityRepository.GetAsync(input.c_Id);

            //  input.MapTo(entity);
            //将input属性的值赋值到entity中
            ObjectMapper.Map(input, entity);
            await _tP_TaskLogEntityManager.UpdateAsync(entity);
        }
        protected virtual async Task <TP_TaskLogEntityEditDto> Create(TP_TaskLogEntityEditDto input)
        {
            //TODO:新增前的逻辑判断,是否允许新增

            var entity = ObjectMapper.Map <TP_TaskLogEntity>(input);

            //调用领域服务
            entity = await _tP_TaskLogEntityManager.CreateAsync(entity);

            var dto = ObjectMapper.Map <TP_TaskLogEntityEditDto>(entity);

            return(dto);
        }
        public async Task <GetTP_TaskLogEntityForEditOutput> GetForEdit(string input)
        {
            var output = new GetTP_TaskLogEntityForEditOutput();
            TP_TaskLogEntityEditDto editDto;

            if (!string.IsNullOrEmpty(input))
            {
                var entity = await _tP_TaskLogEntityRepository.GetAsync(input);

                editDto = ObjectMapper.Map <TP_TaskLogEntityEditDto>(entity);
            }
            else
            {
                editDto = new TP_TaskLogEntityEditDto();
            }



            output.TP_TaskLogEntity = editDto;
            return(output);
        }