ISEbd-21_Gavrilov_R.A._Cour.../DataModel1/IOperationModel.cs

12 lines
209 B
C#
Raw Normal View History

2024-04-30 23:53:53 +04:00
using DataModels.HelperInterfaces;
namespace DataModels
{
public interface IOperationModel : IId
{
int EmployeeId { get; }
string Model { get; }
string Mark { get; }
double Price { get; }
}
}