2024-05-01 22:07:16 +04:00
|
|
|
|
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; }
|
|
|
|
|
}
|
2024-05-01 22:07:16 +04:00
|
|
|
|
}
|