32 lines
484 B
C#
32 lines
484 B
C#
|
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");
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|