Example #1
0
 public void Update(CollectedInformation collectedInformation)
 {
     collectedInformations[collectedInformation.Id] = collectedInformation;
 }
Example #2
0
 public void Add(CollectedInformation collectedInformation)
 {
     collectedInformation.Id = Guid.NewGuid().ToString();
     collectedInformations[collectedInformation.Id] = collectedInformation;
 }