2023-04-08 12:47:51 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CarCenterDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IPresaleModel : IId
|
|
|
|
|
{
|
2023-05-20 08:40:32 +04:00
|
|
|
|
String Name {get;}
|
2023-04-08 12:47:51 +04:00
|
|
|
|
DateTime PresaleDate { get; }
|
|
|
|
|
int EmployeeId { get; }
|
2023-04-09 13:59:29 +04:00
|
|
|
|
int? TypeOfJobId { get; }
|
2023-04-08 12:47:51 +04:00
|
|
|
|
}
|
|
|
|
|
}
|