using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopDataModels.Models
{
///
/// Партия товара
///
public interface IBatchModel : IId
{
///
/// Дата
///
DateTime DateBatch { get; }
///
/// ID товара
///
int ProductId { get; }
}
}