public void  Update(CovidTestModel model)
 {
     try
     {
         var dbModel = _mapper.Map <CovidTest>(model);
         _covidTestRepository.Update(_connectionStrings.Postgresql, dbModel);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }