public MigrationController(
            DataProcessingService dataProcessingService,
            BuyersService buyersService,
            SuppliersService suppliersService,
            ClassificationService classificationService,
            CuentasClarasContext db)
        {
            this.dataProcessingService = dataProcessingService;
            this.db = db;

            this.buyersService         = buyersService;
            this.suppliersService      = suppliersService;
            this.classificationService = classificationService;
        }
Exemplo n.º 2
0
 public ClassificationService(CuentasClarasContext db)
 {
     Db = db;
 }
 public BuyersService(CuentasClarasContext db)
 {
     Db = db;
 }
 public SuppliersController(CuentasClarasContext db)
 {
     this.db = db;
 }
Exemplo n.º 5
0
 public SuppliersService(CuentasClarasContext db)
 {
     Db = db;
 }
 public StatsController(CuentasClarasContext db, DataProcessingService dataProcessingService)
 {
     this.db = db;
     this.dataProccessingService = dataProcessingService;
 }