Example #1
0
 public InferenciaController(BayesInferContext context)
 {
     _context = context;
 }
Example #2
0
 public ArquivoRedeController(BayesInferContext context, IHostingEnvironment hostingEnvironment)
 {
     _context            = context;
     _hostingEnvironment = hostingEnvironment;
 }
 public ArquivoRedeService(BayesInferContext bayesInferContext)
 {
     _context = bayesInferContext;
 }
Example #4
0
 public NodeBeliefController(BayesInferContext context, INodeBeliefService nodeBeliefService, ILogger <NodeBeliefController> logger)
 {
     _context           = context;
     _nodeBeliefService = nodeBeliefService;
     _logger            = logger;
 }
Example #5
0
 public NodeListViewComponent(BayesInferContext context, INodeBeliefService nodeBeliefService)
 {
     _context           = context;
     _nodeBeliefService = nodeBeliefService;
 }
 public RedeBayesianaController(BayesInferContext context)
 {
     _context = context;
 }