コード例 #1
0
        public async Task <EnterpriseAddress> GetEnterpriseAddress(int enterpriseId)
        {
            try
            {
                var temp = await repo.GetEnterpriseAddress(enterpriseId);

                return(temp.Address);
            }
            catch
            {
                return(null);
            }
        }