public AssociatedBoardsViewModel(IBoardsService boardsService)
        {
            Title = "Associated Boards";

            _boardsService   = boardsService;
            AssociatedBoards = new ObservableCollectionFast <BoardTest>();
        }
Exemple #2
0
 public MainBoardDataViewModel(IBoardsService boardsService, ILookupsService lookupsService)
 {
     Title              = "Board Details - Board Test";
     _boardsService     = boardsService;
     BoardTestViewModel = new BoardTestDetailsViewModel(_boardsService);
     BoardViewModel     = new BasicInfoViewModel(_boardsService, lookupsService);
 }
Exemple #3
0
        public CircuitsViewModel(IBoardsService boardsService)
        {
            Title = "Circuits";

            _boardsService = boardsService;
            TestedCircuits = new List <CircuitTest>();
            Circuits       = new ObservableCollectionFast <CircuitSelect>();
        }
        public AddRemoveBoardsViewModel(IBoardsService boardsService)
        {
            Title = "Add/Remove Board";

            _boardsService = boardsService;
            Boards         = new ObservableCollectionFast <BoardDetailsSelect>();
            TestedBoards   = new List <BoardTest>();
        }
Exemple #5
0
        public AllBoardsViewModel(IBoardsService boardsService)
        {
            Title = "Boards on Cloud";

            _boardsService = boardsService;
            Boards         = new ObservableCollectionFast <BoardSelect>();
            TestedBoards   = new List <BoardTest>();
        }
Exemple #6
0
 public ChecklistGeneratorActionHandler(
     IBoardsService boardsService,
     ICardFilterFactory cardFilterFactory,
     IConsole console)
 {
     this.boardsService     = boardsService;
     this.cardFilterFactory = cardFilterFactory;
     this.console           = console;
 }
Exemple #7
0
        public MainCircuitDataViewModel(IBoardsService boardsService, IEstatesLookupsService lookupsService, ILookupsService lkpService)
        {
            Title = "Circuit Details - Circuit Test";

            _boardsService = boardsService;

            CircuitViewModel     = new CircuitDetailsViewModel(boardsService, lkpService, lookupsService);
            CircuitTestViewModel = new CircuitTestDetailsViewModel(boardsService, lookupsService);
        }
Exemple #8
0
        public BoardViewModel(IBoardsService boardsService, ILookupsService lookupsService)
        {
            Title = "Board Details - Circuits";

            _boardsService = boardsService;

            BasicInfoViewModel = new BasicInfoViewModel(boardsService, lookupsService);
            CircuitsViewModel  = new CircuitsViewModel(boardsService);
        }
Exemple #9
0
        public EditPointViewModel(IBoardsService boardsService)
        {
            Title = "Edit Point";

            _boardsService = boardsService;
            Boards         = new ObservableCollectionFast <BoardTest>();
            Circuits       = new ObservableCollectionFast <CircuitTest>();

            ShowArrows = true;
        }
 public ImportActionHandler(
     IBoardsClient boardsClient,
     IBoardsService boardsService,
     ITrelloRepositoryFactory boardsRepositoryFactory,
     IConsole console,
     TrelloConsoleConfiguration configuration)
 {
     this.boardsClient            = boardsClient;
     this.boardsService           = boardsService;
     this.boardsRepositoryFactory = boardsRepositoryFactory;
     this.console       = console;
     this.configuration = configuration;
 }
Exemple #11
0
 public UserStoryService(IRepository <UserStory> userStoryRepo,
                         IMapper mapper,
                         IProjectsService projectsService,
                         IBoardsService boardService,
                         IRepository <BurndownData> burndownRepo,
                         IRepository <KanbanBoardColumn> boardRepo)
 {
     this.userStoryRepo   = userStoryRepo;
     this.mapper          = mapper;
     this.projectsService = projectsService;
     this.boardService    = boardService;
     this.burndownRepo    = burndownRepo;
     this.boardRepo       = boardRepo;
 }
 public TasksService(IRepository <UserStoryTask> repo,
                     IProjectsService projectsService,
                     IBoardsService boardService,
                     IRepository <UserStory> userStoryRepo,
                     IRepository <KanbanBoardColumn> boardRepo,
                     IRepository <BurndownData> burndownRepo)
 {
     this.taskRepo        = repo;
     this.projectsService = projectsService;
     this.boardService    = boardService;
     this.userStoryRepo   = userStoryRepo;
     this.boardRepo       = boardRepo;
     this.burndownRepo    = burndownRepo;
 }
Exemple #13
0
 public AutoRenamerActionHandler(
     IBoardsService boardsService,
     ICardFilterFactory cardFilterFactory,
     IDatePatternResolver datePatternResolver,
     ICardsClient cardsClient,
     IConsole console,
     WeeklyGoalsPluginSettings configuation)
 {
     this.boardsService       = boardsService;
     this.cardFilterFactory   = cardFilterFactory;
     this.datePatternResolver = datePatternResolver;
     this.cardsClient         = cardsClient;
     this.console             = console;
     this.configuation        = configuation;
 }
Exemple #14
0
 public PlanningActionHandler(
     IBoardsService boardsService,
     ICardFilterFactory cardFilterFactory,
     IPlanningCreator planningCreator,
     ICardsClient cardsClient,
     IConsole console,
     WeeklyGoalsPluginSettings configuation)
 {
     this.boardsService     = boardsService;
     this.cardFilterFactory = cardFilterFactory;
     this.planningCreator   = planningCreator;
     this.cardsClient       = cardsClient;
     this.console           = console;
     this.configuation      = configuation;
 }
Exemple #15
0
        public CertificateViewModel(ICertificatesService certificatesService, IBoardsService boardsService, IBuildingService buildingService, ILookupsService lookupsService)
        {
            Title = "Certificate Details - Basic Info";

            _certificatesService = certificatesService;
            _boardsService       = boardsService;
            _buildingService     = buildingService;
            _lookupsService      = lookupsService;

            BasicInfoViewModel        = new BasicInfoViewModel(certificatesService);
            AssociatedBoardsViewModel = new AssociatedBoardsViewModel(boardsService);
            EditPointViewModel        = new EditPointViewModel(boardsService);

            Contractors = new List <BuildingUser>();
            Supervisors = new List <BuildingUser>();
            //CertDateAmendedOptions = new List<string>();
        }
Exemple #16
0
 public BoardsController(IMapper mapper,
                         IProjectsService projectsService,
                         IBoardsService boardColumnsService,
                         ISprintsService sprintsService,
                         IUserStoryService userStoryService,
                         ITestsService testsService,
                         ITasksService tasksService,
                         IBugsService bugsService,
                         IBurndownDataService burndownDataService)
     : base(projectsService)
 {
     this.mapper = mapper;
     this.boardColumnsService = boardColumnsService;
     this.sprintsService      = sprintsService;
     this.userStoryService    = userStoryService;
     this.testsService        = testsService;
     this.tasksService        = tasksService;
     this.bugsService         = bugsService;
     this.burndownDataService = burndownDataService;
 }
 public BoardController(IBoardsService service)
 {
     _service = service ?? throw new ArgumentNullException(nameof(service));
 }
Exemple #18
0
 public HomeController(IBoardsService boardsService)
 {
     _boardsService = boardsService;
 }