public async Task <IActionResult> Get(int id)
        {
            var programDTO = await _contextManager.GetProgramByIdAsync(id);

            if (programDTO == null)
            {
                return(NotFound("No program from given id found."));
            }

            return(Ok(programDTO.ToProgramV1DTO()));
        }