forked from sanchezvem/PyroFetes
28 lines
944 B
C#
28 lines
944 B
C#
namespace PyroFetes.DTO.Product.Request
|
||
{
|
||
// DTO utilisé lors de la création d’une relation entre un produit et un entrepôt
|
||
public class CreateProductWarehouseDto
|
||
{
|
||
// Identifiant de l'entrepôt concerné
|
||
public int WarehouseId { get; set; }
|
||
|
||
// Identifiant du produit associé à cet entrepôt
|
||
public int ProductId { get; set; }
|
||
|
||
// Quantité du produit disponible dans cet entrepôt
|
||
public int Quantity { get; set; }
|
||
}
|
||
|
||
// DTO utilisé lors de la mise à jour d’une relation entre un produit et un entrepôt
|
||
public class UpdateProductWarehouseDto
|
||
{
|
||
// Identifiant de l'entrepôt concerné
|
||
public int WarehouseId { get; set; }
|
||
|
||
// Identifiant du produit associé à cet entrepôt
|
||
public int ProductId { get; set; }
|
||
|
||
// Nouvelle quantité du produit dans cet entrepôt
|
||
public int Quantity { get; set; }
|
||
}
|
||
} |