Exemplo n.º 1
0
 //Удаление представителя
 public void DeleteRepresentative(Representative representative)
 {
     Representatives.Remove(representative);
     SaveChanges();
 }
Exemplo n.º 2
0
 //Добавление Представителя
 public void AddRepresentative(Representative representative)
 {
     Representatives.Add(representative);
     SaveChanges();
 }