public void CreateSaborRepositoryTest()
        {
            //Arrange
            Sabor s = ObjectMother.GetSabor();
            ISaborRepository repository = new SaborRepository();

            //Action
            Sabor newSabor = repository.Save(s);

            //Assert
            Assert.IsTrue(newSabor.Id > 0);
        }