示例#1
0
        public CrabyterDbClient(IOptions <CrabyterApiOptions> optionsAccessor, ILogger <CrabyterDbClient> logger)
        {
            apiOptions   = optionsAccessor.Value;
            clientLogger = logger;

            account = new CrabyterAccount(apiOptions.Endpoint, apiOptions.AccountName, apiOptions.Key);
            account.ErrorOccured += OnErrorOccured;
        }
 public PatientClient(CrabyterAccount account) : base(account)
 {
 }
 public LibraryClient(CrabyterAccount account) : base(account)
 {
 }
示例#4
0
 public StudyClient(CrabyterAccount account) : base(account)
 {
 }