示例#1
0
 public void InitializeFromContainer(ITypesContainer container)
 {
     this.IsInitialized          = true;
     this._browserElementFactory = container.Resolve <IBrowserElementFactory>();
 }
示例#2
0
 public FileLoader(IBrowserElementFactory browserElementFactory, IFileDriver fileDriver)
 {
     this._browserElementFactory = browserElementFactory;
     this._fileDriver            = fileDriver;
 }
示例#3
0
 public FileBrowser(IBrowserElementFactory browserElementFactory)
 {
     this._browserElementFactory = browserElementFactory;
 }