bool Eat(Domain.Tamagotchi tama)
        {
            if (tama == null)
                return false;

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

            return false;
        }