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

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

            return false;
        }