исправь

This commit is contained in:
Nastya_Kozlova 2024-04-26 20:06:37 +04:00
parent a6c5493980
commit 704166efaa
4 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
namespace HotelDataModels.Models namespace CarCenterDataModels.Models
{ {
public interface IConferenceModel : IId public interface IConferenceModel : IId
{ {

View File

@ -1,4 +1,4 @@
namespace HotelDataModels.Models namespace CarCenterDataModels.Models
{ {
public interface IOrganiserModel : IId public interface IOrganiserModel : IId
{ {

View File

@ -1,4 +1,4 @@
namespace HotelDataModels.Models namespace CarCenterDataModels.Models
{ {
public interface IMealPlanModel : IId public interface IMealPlanModel : IId
{ {

View File

@ -1,9 +1,9 @@
namespace HotelDataModels.Models namespace CarCenterDataModels.Models
{ {
public interface ISaleModel : IId public interface ISaleModel : IId
{ {
string SaleDate { get; } string SaleDate { get; }
string SalePrice { get; } //нужно ли sale? string SalePrice { get; }
int PreSaleWorkId { get; } int PreSaleWorkId { get; }
} }
} }