コード例 #1
0
ファイル: APIRoleController.cs プロジェクト: yyasun/Blog
        public HttpResponseMessage Get(int Id)
        {
            Role img = repo.GetRole(Id);

            return(Request.CreateResponse(HttpStatusCode.OK, img));
        }