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

19 lines
370 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; }
2024-05-03 10:27:07 +04:00
List<int> CarIds { get; }
List<int> ServiseIds { get; }
}
}