public ObserverController(VoteExplorerBlockchainContext blockchainContext)
 {
     _blockchainContext = blockchainContext;
 }
예제 #2
0
 public HomeController(ILogger <HomeController> log, VoteExplorerBlockchainContext blockchainContext)
 {
     _log = log;
     _blockchainContext = blockchainContext;
 }
예제 #3
0
        // GET: /<controller>/

        public ShareholderVotingController(VoteExplorerBlockchainContext blockchainContext, VoteExplorerContext Context)
        {
            _blockchainContext = blockchainContext;
            _context           = Context;
        }
예제 #4
0
 public InstitutionalVotingController(VoteExplorerBlockchainContext blockchainContext)
 {
     groupService       = new GroupService(Context);
     _blockchainContext = blockchainContext;
 }