public WorkersService(List <Worker> workers, ICashiersService cashiersService) { Workers = workers; _cashiersService = cashiersService; // Initiates the check-ins/outs of every worker Workers.ForEach(worker => { CheckIns[worker] = null; CheckOuts[worker] = null; }); }
public CashiersOpeningDateOption(ICashiersService cashiersService) { _cashiersService = cashiersService; }
public CashiersRegistersOption(ICashiersService cashiersService) { _cashiersService = cashiersService; }