コード例 #1
0
ファイル: PolicyController.cs プロジェクト: theopenem/Toems
        public DtoApiStringResponse GetHashDetail(int id, string hash)
        {
            var result = _policyServices.GetHashDetail(id, hash);

            return(new DtoApiStringResponse()
            {
                Value = result
            });
        }