public async Task <string> DeleteInformation(int id) { try { var res = await _repository.DeleteInformation(id); return(res); } catch (Exception ex) { throw ex; } }