Создание моделей данных

This commit is contained in:
bekodeg
2024-04-17 21:44:51 +04:00
parent e4b69370d6
commit 8049b51388
12 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace ComputerHardwareStoreDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
int StoreKeeperId { get; }
}
}