Beispiel #1
0
 protected override void Dispose(bool disposing)
 {
     if (this.disposed)
     {
         return;
     }
     if (!disposing)
     {
         return;
     }
     this.adapter?.Dispose();
     this.adapter = null;
     base.Dispose(true);
 }
Beispiel #2
0
 public ArbcbRepository(IProgressConnection connection)
 {
     this.adapter = new ArbcbAdapter(connection);
     this.Cono    = this.adapter.Cono;
     this.OnCreated();
 }