Compare commits

...

2 Commits

3 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,16 @@
using DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class MachineBindingModel : IMachineModel
{
public int Id { get; set; }
public string Title { get; set; }
public string Country { get; set; }
}
}

View File

@ -0,0 +1,18 @@
using DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class WorkerBindingModel : IWorkerModel
{
public int Id { get; set; }
public string Name { get; set; }
public DateTime Birthday { get; set; }
public string Specialization { get; set; }
public double Salary { get; set; }
}
}

View File

@ -0,0 +1,17 @@
using DataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.BindingModels
{
public class WorkshopBindingModel : IWorkshopModel
{
public int Id { get; set; }
public string Title { get; set; }
public string Address { get; set; }
public string Director { get; set; }
}
}