示例#1
0
 public DataContext(IOrmDataComponentFactory factory)
 {
     _repo = new Repository(factory);
 }
示例#2
0
 public Repository(IOrmDataComponentFactory ormDataComponentFactory) : base()
 {
     _ormDataComponentFactory = ormDataComponentFactory ?? throw new ArgumentNullException(nameof(ormDataComponentFactory));
 }