Add physical delete
This commit is contained in:
		| @@ -55,5 +55,13 @@ namespace Core.Inventory.Provider.Contracts | ||||
|         /// <returns>A <see cref="{Task{TagOverrideAdapter}}"/> representing | ||||
|         /// the asynchronous execution of the service.</returns> | ||||
|         ValueTask<TagOverrideAdapter> UpdateTagOverride(TagOverrideAdapter entity, CancellationToken cancellationToken); | ||||
|  | ||||
|         /// <summary> | ||||
|         /// Deletes a TagOverride by its MongoDB identifier. | ||||
|         /// </summary> | ||||
|         /// <param name="tagOverrideId">The TagOverride MongoDB identifier.</param> | ||||
|         /// <returns>A <see cref="{Task{TagOverrideAdapter}}"/> representing | ||||
|         /// the asynchronous execution of the service.</returns> | ||||
|         ValueTask<TagOverrideAdapter> DeleteTagOverride(string tagOverrideId, CancellationToken cancellationToken); | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -71,5 +71,13 @@ namespace Core.Inventory.Provider.Contracts | ||||
|         /// <param name="parentTagId">The identifier of the parentTag to add.</param> | ||||
|         /// <returns>A <see cref="Task{TagAdapter}"/> representing the asynchronous operation, with the updated tag object.</returns> | ||||
|         ValueTask<TagAdapter> RemoveParentTag(string tagId, string parentTagId, CancellationToken cancellationToken); | ||||
|  | ||||
|         /// <summary> | ||||
|         /// Deletes a Tag by its MongoDB identifier. | ||||
|         /// </summary> | ||||
|         /// <param name="TagId">The Tag MongoDB identifier.</param> | ||||
|         /// <returns>A <see cref="{Task{TagAdapter}}"/> representing | ||||
|         /// the asynchronous execution of the service.</returns> | ||||
|         ValueTask<TagAdapter> DeleteTag(string tagId, CancellationToken cancellationToken); | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -55,5 +55,13 @@ namespace Core.Inventory.Provider.Contracts | ||||
|         /// <returns>A <see cref="{Task{TagTypeAdapter}}"/> representing | ||||
|         /// the asynchronous execution of the service.</returns> | ||||
|         ValueTask<TagTypeAdapter> UpdateTagType(TagTypeAdapter entity, CancellationToken cancellationToken); | ||||
|  | ||||
|         /// <summary> | ||||
|         /// Deletes a TagType by its MongoDB identifier. | ||||
|         /// </summary> | ||||
|         /// <param name="tagTypeId">The TagType MongoDB identifier.</param> | ||||
|         /// <returns>A <see cref="{Task{TagTypeAdapter}}"/> representing | ||||
|         /// the asynchronous execution of the service.</returns> | ||||
|         ValueTask<TagTypeAdapter> DeleteTagType(string tagTypeId, CancellationToken cancellationToken); | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Oscar Morales
					Oscar Morales