I
This commit is contained in:
parent
70cbc9d0fb
commit
a4ede33acb
@ -6,4 +6,12 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="BindingModels\" />
|
||||||
|
<Folder Include="BusinessLogicsContracts\" />
|
||||||
|
<Folder Include="SearchModels\" />
|
||||||
|
<Folder Include="StoragesContracts\" />
|
||||||
|
<Folder Include="ViewModels\" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -3,5 +3,6 @@
|
|||||||
public interface IId
|
public interface IId
|
||||||
{
|
{
|
||||||
int Id { get; }
|
int Id { get; }
|
||||||
|
int UserId { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
namespace DataModels.Models
|
namespace DataModels.Models
|
||||||
{
|
{
|
||||||
public interface IDetailModel
|
public interface IDetailModel : IId
|
||||||
{
|
{
|
||||||
|
string Name { get; }
|
||||||
|
double Cost { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
8
Course/DataModels/Models/IProductModel.cs
Normal file
8
Course/DataModels/Models/IProductModel.cs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
namespace DataModels.Models
|
||||||
|
{
|
||||||
|
public interface IProductModel : IId
|
||||||
|
{
|
||||||
|
string Name { get; }
|
||||||
|
double Cost { get; }
|
||||||
|
}
|
||||||
|
}
|
8
Course/DataModels/Models/IProductionModel.cs
Normal file
8
Course/DataModels/Models/IProductionModel.cs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
namespace DataModels.Models
|
||||||
|
{
|
||||||
|
public interface IProductionModel : IId
|
||||||
|
{
|
||||||
|
string Name { get; }
|
||||||
|
double Cost { get; }
|
||||||
|
}
|
||||||
|
}
|
12
Course/DataModels/Models/IUserModel.cs
Normal file
12
Course/DataModels/Models/IUserModel.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
namespace DataModels.Models
|
||||||
|
{
|
||||||
|
public interface IUserModel
|
||||||
|
{
|
||||||
|
int Id { get; }
|
||||||
|
string Email { get; }
|
||||||
|
string Name { get; }
|
||||||
|
string Login { get; }
|
||||||
|
string Password { get; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user