using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopDataModels.Models
{
///
/// Поставка товара
///
public interface IShipmentModel : IId
{
//ID пользователя, создавшего поставку
int UserId { get; }
///
/// Название поставщика
///
string ProviderName { get; }
///
/// Дата поставки
///
DateTime DateShipment { get; }
}
}