public void RemovePet(int id)
        {
            var pet = _context.Gyvunai.Where(x => x.Id == id).FirstOrDefault();

            if (pet == null)
            {
                throw new RowNotInTableException("Pet with id " + id + " does not exist");
            }
            _context.Remove(pet);
            _context.SaveChanges();
        }