public bool Delete(int id)
        {
            bool deleted = _repository.DeleteNumber(id);

            return(deleted);
        }