Ejemplo n.º 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;
        }
Ejemplo n.º 2
0
 public PatientClient(CrabyterAccount account) : base(account)
 {
 }
Ejemplo n.º 3
0
 public LibraryClient(CrabyterAccount account) : base(account)
 {
 }
Ejemplo n.º 4
0
 public StudyClient(CrabyterAccount account) : base(account)
 {
 }