Exemplo n.º 1
0
        public void AddCategory()
        {
            using (var db = new ShoppingContext())
            {
                Category c = new Category();
                c.Description = "Todas las pastas";
                c.Name        = "Pastas";
                var service = new Repository.Repository(db);
                var query   = service.AddCategority(c, 1);

                Assert.IsTrue(query > 0);
            }
        }