From af5d72f78e540c4a91b71652d3b57d645ac3c7ab Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Mon, 13 Jan 2025 14:03:16 +0100 Subject: [PATCH] Add doc comments to CreateSense and CreateExampleSentence --- backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs b/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs index 70fee8261..b8ad8f887 100644 --- a/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs +++ b/backend/FwLite/MiniLcm/IMiniLcmWriteApi.cs @@ -47,6 +47,13 @@ Task UpdateWritingSystem(WritingSystemId id, #endregion #region Sense + /// + /// Creates the provided sense and adds it to the specified entry + /// + /// The ID of the sense's parent entry + /// The sense to create + /// Where the sense should be inserted in the entry's list of senses. If null it will be appended to the end of the list. + /// Task CreateSense(Guid entryId, Sense sense, BetweenPosition? position = null); Task UpdateSense(Guid entryId, Guid senseId, UpdateObjectInput update); Task UpdateSense(Guid entryId, Sense before, Sense after); @@ -57,6 +64,14 @@ Task UpdateWritingSystem(WritingSystemId id, #endregion #region ExampleSentence + /// + /// Creates the provided example sentence and adds it to the specified sense + /// + /// The ID of the sense's parent entry + /// The ID of example sentence's parent sense + /// The example sentence to create + /// Where the example sentence should be inserted in the sense's list of example sentences. If null it will be appended to the end of the list. + /// Task CreateExampleSentence(Guid entryId, Guid senseId, ExampleSentence exampleSentence, BetweenPosition? position = null); Task UpdateExampleSentence(Guid entryId, Guid senseId,