示例#1
0
        public async Task <string> UpdateInformation(int id, Infonet infonet)
        {
            try
            {
                var res = await _repository.UpdateInformation(id, infonet);

                return(res);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }