public async Task <ServiceProgramViewModel> GetById(int id)
 {
     return(_mapper.Map <ServiceProgram, ServiceProgramViewModel>(
                await _programRepository.GetById(id)));
 }