예제 #1
0
 public void AddScientificExecutive(ScientificExecutive scientificExecutive)
 {
     _scientificExecutives.Add(scientificExecutive);
 }
예제 #2
0
 public void EditScientificExecutive(ScientificExecutive scientificExecutive)
 {
     _scientificExecutives.AddOrUpdate(c => c.Id, scientificExecutive);
 }