допилил свои модели
This commit is contained in:
parent
add7fada5f
commit
bead0ab7b1
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; }
|
||||
DateTime Birthday { get; }
|
||||
String Specialization { get; }
|
||||
Double Salary { get; }
|
||||
string Specialization { 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