допилил свои модели

This commit is contained in:
Дмитрий Блохин 2024-04-03 13:36:27 +04:00
parent add7fada5f
commit bead0ab7b1
3 changed files with 31 additions and 2 deletions

View 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; }
}
}

View File

@ -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; }
}
}

View 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; }
}
}