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

Commit e568a52

Browse files
committed
Update LayoutService interface with geometry param
1 parent 3e1cd08 commit e568a52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/InvvardDev.EZLayoutDisplay.Desktop/Service/Interface/ILayoutService.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,19 @@ public interface ILayoutService
1010
/// Gets the <see cref="ErgodoxLayout"/> basic info.
1111
/// </summary>
1212
/// <param name="layoutHashId">The layout hash ID to get.</param>
13+
/// <param name="geometry">The keyboard geometry to get.</param>
1314
/// <param name="layoutRevisionId">The layout revision ID to get.</param>
1415
/// <returns>The <see cref="ErgodoxLayout"/>.</returns>
15-
Task<ErgodoxLayout> GetLayoutInfo(string layoutHashId, string layoutRevisionId);
16+
Task<ErgodoxLayout> GetLayoutInfo(string layoutHashId, string geometry, string layoutRevisionId);
1617

1718
/// <summary>
1819
/// Gets the <see cref="ErgodoxLayout"/>.
1920
/// </summary>
2021
/// <param name="layoutHashId">The layout hash ID to get.</param>
22+
/// <param name="geometry">The keyboard geometry to get.</param>
2123
/// <param name="layoutRevisionId">The layout revision ID to get.</param>
2224
/// <returns>The <see cref="ErgodoxLayout"/>.</returns>
23-
Task<ErgodoxLayout> GetErgodoxLayout(string layoutHashId, string layoutRevisionId);
25+
Task<ErgodoxLayout> GetErgodoxLayout(string layoutHashId, string geometry, string layoutRevisionId);
2426

2527
/// <summary>
2628
/// Transforms an <see cref="ErgodoxLayout"/> into a <see cref="EZLayout"/>.

0 commit comments

Comments
 (0)