2024-05-03 10:59:33 +04:00
|
|
|
|
using CarShowroomDataModels.Models;
|
|
|
|
|
using System;
|
2024-05-01 22:07:16 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CarShowroomContracts.AbstractModels
|
|
|
|
|
{
|
2024-05-03 11:28:27 +04:00
|
|
|
|
public interface ISale : IId
|
2024-05-01 22:07:16 +04:00
|
|
|
|
{
|
|
|
|
|
DateTime SaleTime { get; }
|
2024-05-13 15:21:18 +04:00
|
|
|
|
int Price { get; }
|
2024-05-05 19:18:53 +04:00
|
|
|
|
int? ClientId { get; }
|
|
|
|
|
int? EmployeeId { get; }
|
2024-05-03 10:27:07 +04:00
|
|
|
|
List<int> CarIds { get; }
|
2024-05-03 11:28:27 +04:00
|
|
|
|
List<int> ServiceIds { get; }
|
2024-05-03 10:27:07 +04:00
|
|
|
|
}
|
2024-05-01 22:07:16 +04:00
|
|
|
|
}
|