Merge branch 'main' of https://git.is.ulstu.ru/Serxionaft/Coursach
This commit is contained in:
commit
ac8320cfe6
14
Course/DataModels/Models/IMachineModel.cs
Normal file
14
Course/DataModels/Models/IMachineModel.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace DataModels.Models
|
||||||
|
{
|
||||||
|
public interface IMachineModel : IId
|
||||||
|
{
|
||||||
|
string Title { get; }
|
||||||
|
string Country { get; }
|
||||||
|
}
|
||||||
|
}
|
@ -10,7 +10,7 @@ namespace DataModels.Models
|
|||||||
{
|
{
|
||||||
string Name { get; }
|
string Name { get; }
|
||||||
DateTime Birthday { get; }
|
DateTime Birthday { get; }
|
||||||
String Specialization { get; }
|
string Specialization { get; }
|
||||||
Double Salary { get; }
|
double Salary { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
15
Course/DataModels/Models/IWorkshopModel.cs
Normal file
15
Course/DataModels/Models/IWorkshopModel.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace DataModels.Models
|
||||||
|
{
|
||||||
|
public interface IWorkshopModel : IId
|
||||||
|
{
|
||||||
|
string Title { get; }
|
||||||
|
string Address { get; }
|
||||||
|
string Director { get; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user