Exemplo n.º 1
0
        public async Task <DemoSchoolDto> UpdateByDto(DemoSchoolDto input)
        {
            var dto = await this._demoSchoolAppService.UpdateByDto(input);

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

            return(dto);
        }