9 lines
195 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-28 16:00:22 +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
}