9 lines
194 B
C#
Raw Normal View History

2024-04-26 20:06:37 +04:00
namespace CarCenterDataModels.Models
2024-04-26 19:59:56 +04:00
{
2024-04-26 20:02:35 +04:00
public interface ISaleModel : IId
2024-04-26 19:59:56 +04:00
{
2024-04-26 20:20:44 +04:00
DateTime SaleDate { get; }
2024-04-26 20:06:37 +04:00
string SalePrice { get; }
2024-04-26 20:20:44 +04:00
int ManagerId { get; }
2024-04-26 19:59:56 +04:00
}
2024-04-26 20:20:44 +04:00
}