コード例 #1
0
 public DataContext(IOrmDataComponentFactory factory)
 {
     _repo = new Repository(factory);
 }
コード例 #2
0
ファイル: Repository.cs プロジェクト: bytemaster-0xff/Data
 public Repository(IOrmDataComponentFactory ormDataComponentFactory) : base()
 {
     _ormDataComponentFactory = ormDataComponentFactory ?? throw new ArgumentNullException(nameof(ormDataComponentFactory));
 }