17 lines
364 B
C#
17 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ServiceStationDataModels.Models
|
|
{
|
|
public interface ITechnicalWorkModel : IId
|
|
{
|
|
string WorkType { get; }
|
|
DateTime DateLastWork { get; }
|
|
double WorkPrice { get; }
|
|
int ExecutorId { get; }
|
|
}
|
|
}
|