PIbd-23_Abazov_A.A._Constru.../ConstructionCompany/ConstructionCompanyContracts/BindingModels/EmployeeOrderBindingModel.cs

16 lines
383 B
C#
Raw Normal View History

using ConstructionCompanyDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConstructionCompanyContracts.BindingModels
{
public class EmployeeOrderBindingModel : IEmployeeOrderModel
{
public int EmployeeId { get; set; }
public int OrderId { get; set; }
}
}