SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomDataModels/AbstractModels/ISale.cs

17 lines
301 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarShowroomContracts.AbstractModels
{
internal interface ISale
{
DateTime SaleTime { get; }
int Cost { get; }
2024-05-03 09:36:46 +04:00
int ClientId { get; }
int EmployeeId { get; }
}
}