Переименование интерфейсов (добавление слова "Model")

This commit is contained in:
Кашин Максим 2023-04-01 18:19:21 +04:00
parent 4f0ba6d3eb
commit eb4ae7c9ba
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
namespace HotelDataModels.Models
{
public interface IConferenceBooking : IId
public interface IConferenceBookingModel : IId
{
}
}

View File

@ -1,6 +1,6 @@
namespace HotelDataModels.Models
{
public interface IDinner : IId
public interface IDinnerModel : IId
{
}
}

View File

@ -1,7 +1,7 @@

namespace HotelDataModels.Models
{
public interface IHeadwaiter : IId
public interface IHeadwaiterModel : IId
{
}

View File

@ -1,7 +1,7 @@

namespace HotelDataModels.Models
{
public interface IRoom : IId
public interface IRoomModel : IId
{
}
}