Esempio n. 1
0
        bool Eat(Domain.Tamagotchi tama)
        {
            if (tama == null)
                return false;

            if (tama.EatAction(DateTime.UtcNow))
                return repo.SaveChanges();

            return false;
        }