20 lines
412 B
C#
20 lines
412 B
C#
using CarShowroomDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CarShowroomContracts.AbstractModels
|
|
{
|
|
internal interface ISale : IId
|
|
{
|
|
DateTime SaleTime { get; }
|
|
int Cost { get; }
|
|
int ClientId { get; }
|
|
int EmployeeId { get; }
|
|
List<int> CarIds { get; }
|
|
List<int> ServiseIds { get; }
|
|
}
|
|
}
|