PIbd-21_Medvedkov_Coursach/ComputerShopDataModels/Models/IBatchModel.cs

26 lines
452 B
C#
Raw Normal View History

2024-05-01 04:42:57 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopDataModels.Models
{
/// <summary>
/// Партия товара
/// </summary>
public interface IBatchModel : IId
{
/// <summary>
/// Дата
/// </summary>
DateTime DateBatch { get; }
/// <summary>
/// ID товара
/// </summary>
int ProductId { get; }
}
}