public Actions(WorkerPool workers, KanbanBoard board, Store store, State state) { _workers = workers; _board = board; _store = store; _state = state; }
public Game(Driver driver, ISimpleStrategy projectStrategy, IEmployeeStrategy founderStrategy, IEmployeeStrategy developerStrategy, IEmployeeStrategy testerStrategy, IEmployeeStrategy baStrategy) { Pool = new WorkerPool(driver); Board = new KanbanBoard(driver); Store = new Store(driver); ProjectStrategy = projectStrategy; FounderStrategy = founderStrategy; DeveloperStrategy = developerStrategy; TesterStrategy = testerStrategy; BaStrategy = baStrategy; State = new State(Pool, Board, Store); Actions = new Actions(Pool, Board, Store, State); }
public State(WorkerPool workers, KanbanBoard board, Store store) { _workers = workers; _board = board; _store = store; }