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:
		| @@ -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. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user