public override void AddResponse(StayImportResultDto response)
 {
     if (!_report.ContainsKey(response.Success))
         _report.Add(response.Success,
             new List<Tuple<string, string, string, string>>());
     _report[response.Success].Add(new Tuple<string, string, string, string>(response.ExternalKey, response.Id, response.GuestEmail, response.Message));
 }
 public abstract void AddResponse(StayImportResultDto response);