26 lines
406 B
C#
26 lines
406 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TransportCompanyDataModels.Models
|
|||
|
{
|
|||
|
public interface ITrucking : IId
|
|||
|
{
|
|||
|
int ClientId { get; }
|
|||
|
|
|||
|
int CargoId { get; }
|
|||
|
|
|||
|
double Price { get; }
|
|||
|
|
|||
|
DateTime DateStart { get; }
|
|||
|
|
|||
|
DateTime DateEnd { get; }
|
|||
|
|
|||
|
int TypeTransportationId { get; }
|
|||
|
|
|||
|
int TransportId { get; }
|
|||
|
}
|
|||
|
}
|