public ManualProposalPaymentsRepository(ZestContext context) : base(context)
 {
 }
 public BlockchainRepository(ZestContext context) : base(context)
 {
 }
Ejemplo n.º 3
0
 public Seed(ZestContext context)
 {
     this.context = context ??
                    throw new ArgumentNullException(nameof(context));
 }
 public MasternodeCountRepository(ZestContext context) : base(context)
 {
 }
 public MasternodeCountRepository(ZestContext context, IBlockchainRepository blockchainRepository) : base(context)
 {
     this.BlockchainRepository = blockchainRepository ?? throw new ArgumentNullException(nameof(blockchainRepository));
 }
 public UserRepository(ZestContext context) : base(context)
 {
 }