Skip to content
This repository was archived by the owner on Nov 25, 2023. It is now read-only.

Commit 70d83f0

Browse files
committed
Update design time implementation
1 parent e568a52 commit 70d83f0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/InvvardDev.EZLayoutDisplay.Desktop/Service/Design/LayoutService.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,17 @@ namespace InvvardDev.EZLayoutDisplay.Desktop.Service.Design
88
{
99
public class LayoutService : ILayoutService
1010
{
11-
public async Task<ErgodoxLayout> GetLayoutInfo(string layoutHashId, string layoutRevisionId)
11+
public async Task<ErgodoxLayout> GetLayoutInfo(string layoutHashId, string geometry, string layoutRevisionId)
1212
{
1313
Debug.WriteLine("Layout retrieved.");
1414

15-
var layoutInfo = new ErgodoxLayout();
16-
layoutInfo.Title = "Layout title v1.0";
15+
var layoutInfo = new ErgodoxLayout {Title = "Layout title v1.0"};
1716

1817
return await new Task<ErgodoxLayout>(() => layoutInfo);
1918
}
2019

2120
/// <inheritdoc />
22-
public async Task<ErgodoxLayout> GetErgodoxLayout(string layoutHashId, string layoutRevisionId)
21+
public async Task<ErgodoxLayout> GetErgodoxLayout(string layoutHashId, string geometry, string layoutRevisionId)
2322
{
2423
Debug.WriteLine("Layout retrieved.");
2524

0 commit comments

Comments
 (0)