PIbd-21_Yakovlev_M.G._CarRe.../CarRepairShop/CarRepairShopDataModels/IId.cs

15 lines
220 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarRepairShopDataModels
{
public interface IId
{
int Id { get; }
}
}