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

20 lines
413 B
C#
Raw Normal View History

2024-05-03 10:59:33 +04:00
using CarShowroomDataModels.Models;
using System;
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
{
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
}
}