19 lines
502 B
C#
19 lines
502 B
C#
using ConstructionCompanyDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ConstructionCompanyMongoDBImplement.Models
|
|
{
|
|
public class Employee : IEmployeeModel
|
|
{
|
|
public string EmployeeName { get; private set; } = string.Empty;
|
|
|
|
public int Id { get; private set; }
|
|
public int PositionID { get; private set; }
|
|
public Position Position { get; set; } = new();
|
|
}
|
|
}
|