2021-02-13 14:27:32 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using MapTo;
|
|
|
|
|
using TestConsoleApp.Data.Models;
|
2021-02-17 11:32:23 +03:00
|
|
|
|
using TestConsoleApp.ViewModels;
|
2021-02-13 14:27:32 +03:00
|
|
|
|
|
2021-02-17 11:32:23 +03:00
|
|
|
|
namespace TestConsoleApp.ViewModels2
|
2021-02-13 14:27:32 +03:00
|
|
|
|
{
|
|
|
|
|
[MapFrom(typeof(Manager))]
|
|
|
|
|
public partial class ManagerViewModel : EmployeeViewModel
|
|
|
|
|
{
|
|
|
|
|
public int Level { get; set; }
|
|
|
|
|
|
|
|
|
|
public IEnumerable<EmployeeViewModel> Employees { get; set; } = Array.Empty<EmployeeViewModel>();
|
|
|
|
|
}
|
|
|
|
|
}
|