コード例 #1
0
    public RestManager(IWebHostEnvironment webHostEnvironment)
    {
        var filePath = Path.Combine(webHostEnvironment.WebRootPath, "Source/TimeLog.REST.API.json");

        _restDocHelper = new RestDocumentationHelper(filePath);
    }
コード例 #2
0
ファイル: RestManager.cs プロジェクト: rambo406/TimeLogApiSdk
 private RestManager(string jsonFilePath)
 {
     _restDocHelper = new RestDocumentationHelper(jsonFilePath);
 }