private KonturExternTestContext(ILog log, AuthTestData authTestData, Credentials credentials, Action <ExternBuilder.Configured>?overrideOptions = null)
 {
     this.log          = log;
     this.authTestData = authTestData;
     this.credentials  = credentials;
     konturExtern      = CreateExtern(overrideOptions);
 }
示例#2
0
 public DraftsTestContext(IExtern konturExtern, EntityScopeFactory <Draft> scopeFactory)
 {
     this.konturExtern = konturExtern;
     this.scopeFactory = scopeFactory;
 }
示例#3
0
 public AccountTestContext(IExtern konturExtern, EntityScopeFactory <Account> scopeFactory)
 {
     this.konturExtern = konturExtern;
     this.scopeFactory = scopeFactory;
 }
 public OrganizationTestContext(IExtern konturExtern, EntityScopeFactory <Organization> scopeFactory)
 {
     this.konturExtern = konturExtern;
     this.scopeFactory = scopeFactory;
 }
 public ContentsContext(IExtern konturExtern) => this.konturExtern = konturExtern;
 public DocflowsTestContext(IExtern konturExtern, EntityScopeFactory <IDocflowWithDocuments> scopeFactory)
 {
     this.konturExtern = konturExtern;
     this.scopeFactory = scopeFactory;
 }