public RecipientsManager(IRecipientsStore Store)
 {
     _Store = Store;
 }
Beispiel #2
0
 //Конcтруктор, с указанием места хранения данных для класса RecipientManager
 public RecipientsManager(IRecipientsStore recipientsStore)
 {
     this.recipientsStore = recipientsStore;
 }