public async Task <ActionResult <IEnumerable <SetupDto> > > GetSetupById(int id)
 {
     return(Ok(await _setupRepository.GetSetupsByIdAsync(id)));
 }