Beispiel #1
0
        public void FindAllTestNotNull()
        {
            // Act
            int result = itemCategoryRepository.FindAll().Count();

            // Assert
            Assert.IsTrue(result >= 0, "Unable to find all properly");
        }
 public List <ItemCategory> FindAllItemCategory()
 {
     return(itemCategoryRepository.FindAll().ToList());
 }