Первичное заполнение интерфейсов мебели, моудлей и материалов

This commit is contained in:
Ismailov_Rovshan 2023-04-05 19:57:45 +04:00
parent 69827ed848
commit 609c801c3d
4 changed files with 45 additions and 4 deletions

View File

@ -6,8 +6,4 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureFactoryDataModels.Models
{
internal interface IFurnitureModel : IId
{
string Name { get;}
string Color { get; }
string Type { get; }
}
}

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureFactoryDataModels.Models
{
internal interface IHeadsetModuleModel : IId
{
string Style { get;}
int Cost { get;}
int UserID { get;}
}
}

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureFactoryDataModels.Models
{
internal interface IMaterialModel : IId
{
string Name { get; }
string Cost { get; }
int userID { get; }
}
}