public Editions GetById(int id)
        {
            var getById = editionRepository.GetById(id);

            return(getById);
        }