2024-06-22 15:10:46 +04:00
|
|
|
|
using DataModels.Models;
|
|
|
|
|
using System;
|
2024-06-17 14:32:12 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Contracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class SupplierViewModel
|
|
|
|
|
{
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-06-22 15:10:46 +04:00
|
|
|
|
public Dictionary<Guid, (IProduct, int)> AvailibleProducts = new();
|
2024-06-17 14:32:12 +04:00
|
|
|
|
}
|
|
|
|
|
}
|