Ejemplo n.º 1
0
        public async Task <DemoStudentDto> UpdateByDto(DemoStudentDto input)
        {
            var dto = await this._demoStudentAppService.UpdateByDto(input);

            return(dto);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 更新  [学生表]
        /// </summary>
        /// <param name="input">更新的实体的对象</param>
        /// <returns>更新后的对象</returns>
        public async Task <DemoStudentDto> UpdateByDto(DemoStudentDto input)
        {
            var dto = await this._myDemoStudentRepository.UpdateByDtoAsync(input);

            return(dto);
        }