2021-12-24 20:06:06 +03:00
|
|
|
|
using System;
|
|
|
|
|
using MapTo;
|
|
|
|
|
using TestConsoleApp.Data.Models;
|
|
|
|
|
using TestConsoleApp.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace TestConsoleApp
|
|
|
|
|
{
|
|
|
|
|
internal class Program
|
|
|
|
|
{
|
|
|
|
|
private static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
//UserTest();
|
|
|
|
|
|
|
|
|
|
// EmployeeManagerTest();
|
|
|
|
|
Console.WriteLine("done");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void EmployeeManagerTest()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var employee = new Employee(1, "hello");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2021-01-27 10:53:29 +03:00
|
|
|
|
}
|