PIAPS_CW/DataModels/Models/ISupplier.cs

16 lines
326 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface ISupplier : IId
{
string Name { get; }
2024-06-22 15:10:46 +04:00
Dictionary<Guid, (IProduct, int)> AvailibleProducts { get; }
int Deals { get; }
}
}