public DashboardController(ICashRepo cashRepo, ICheckRepo checkRepo) { this.cashRepo = cashRepo; this.checkRepo = checkRepo; }
public CashController(ICashRepo cashRepo) { this.cashRepo = cashRepo; }
public DashboardController() { this.cashRepo = new CashRepository(new KasaTakipDbContext()); this.checkRepo = new CheckRepository(new KasaTakipDbContext()); }
public CashController() { this.cashRepo = new CashRepository(new KasaTakipDbContext()); }