Exemplo n.º 1
0
        static void Main()
        {
            UnitOfWork work = new UnitOfWork();

            EmployeesService service = new EmployeesService(work);

            Console.WriteLine(service.GetEmployeeByName("Guy").LastName);
            //SoftuniContext context=  new SoftuniContext();
            // context.Employees.FirstOrDefault(employee => employee.FirstName == "Guy");
        }