SUBD_PIbd-23_ZakharovRA/CarShowroom/CarShowroomDataModels/AbstractModels/ISale.cs
2024-05-03 10:59:33 +04:00

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; }
}
}