public CouchbaseInvalidKeyException(Interfaces.IModel model)
     : base(EXCEPTION_MESSAGE)
 {
     Model     = model;
     ModelType = model.Type;
 }
예제 #2
0
 public API(Interfaces.IModel model)
 {
     this.Model = model ?? throw new ArgumentNullException(nameof(model));
 }
예제 #3
0
 public BaseAPI(Interfaces.IModel model)
 {
     this.Model = model;
 }