Merge pull request 'feat: added endpoint DeleteProduct (DAL)' (#5) from feature/create-Product-and-ProductTag-CRUD(DAL) into development

Reviewed-on: #5
Reviewed-by: Sergio Matías <sergio.matias@agilewebs.com>
This commit is contained in:
2025-08-06 17:53:58 +00:00
5 changed files with 60 additions and 8 deletions

View File

@@ -34,12 +34,12 @@ namespace Core.Inventory.Domain.Contexts.Inventory.Request
public string Description { get; set; } = null!;
/// <summary>
/// Gets or sets the status of the product.
/// Gets or sets the productStatus of the product.
/// </summary>
[BsonElement("status")]
[BsonElement("productStatus")]
[BsonRepresentation(BsonType.String)]
[JsonPropertyName("status")]
public string Status { get; set; } = null!;
[JsonPropertyName("productStatus")]
public string ProductStatus { get; set; } = null!;
/// <summary>
/// Gets or sets the list of Tag Ids associated with this product.