edit DataModels

This commit is contained in:
ChaZIR 2024-04-30 01:41:51 +04:00
parent ebae3c72a8
commit 7c6766e700
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ namespace TravelCompanyDataModels.Models.Contractor
public interface IExcursionGroupModel : IId
{
string ExcursionGroupName { get; }
int PeopleAmount { get; }
int ContractorID { get; }
}
}

View File

@ -9,7 +9,7 @@ namespace TravelCompanyDataModels.Models.Contractor
public interface IExcursionModel : IId
{
string ExcursionName { get; }
int ExcursionPrice { get; }
int ContractorID { get; }
}
}

View File

@ -9,7 +9,7 @@ namespace TravelCompanyDataModels.Models.Contractor
public interface ITourModel : IId
{
string TourName { get; }
DateTime TourDate { get; }
int ContractorID { get; }
}
}