Пример #1
0
        static void Main(string[] args)
        {
            EfProductDal productDal = new EfProductDal();

            ProductManager productManager = new ProductManager(productDal);

            //List<Product> products = productDal.GetAll();

            productManager.Add(new Product {
                CategoryId = 2, ProductName = "Acer Laptop", QuantityPerUnit = "64 Gb Ram", UnitPrice = 10000, UnitsInStock = 2
            });


            foreach (var product in productManager.GetAllAsync().Result)
            {
                Console.WriteLine(product.ProductName);
            }

            foreach (var product in productManager.GetAll())
            {
                Console.WriteLine(product.ProductName);
            }

            EfEmployeeDal employeeDal = new EfEmployeeDal();

            foreach (var employee in employeeDal.GetAll())
            {
                Console.WriteLine(employee.FirstName);
            }
        }
Пример #2
0
        public void Get_Employees_All()
        {
            EfEmployeeDal efEmployeeDal = new EfEmployeeDal();
            var           result        = efEmployeeDal.GetList();

            Assert.AreNotEqual(0, result.Count);
        }