Example #1
0
 public DataRepository(IWypelnianie filler)
 {
     if (filler == null)
     {
         throw new ArgumentNullException(nameof(filler));
     }
     this._data  = new DataContext();
     this.filler = filler;
     filler.Fill(this);
 }
Example #2
0
 public DataRepository(IWypelnianie wyp)
 {
     this.wypelniacz = wyp;
 }