Exemple #1
0
 public NodeController(ISequenceService sequenceService,
                       Grit.Tree.ITreeService treeService,
                       INodeService nodeService)
 {
     this.SequenceService = sequenceService;
     this.NodeService     = nodeService;
     this.TreeService     = treeService;
 }
 public SettingsController(INodeService nodeService,
                           IClientService clientService,
                           Grit.Tree.ITreeService treeService)
 {
     this.NodeService   = nodeService;
     this.TreeService   = treeService;
     this.ClientService = clientService;
 }
Exemple #3
0
 public ClientController(ISequenceService sequenceService,
                         Grit.Tree.ITreeService treeService,
                         IClientService clientService,
                         INodeService nodeService)
 {
     this.SequenceService = sequenceService;
     this.ClientService   = clientService;
     this.TreeService     = treeService;
     this.NodeService     = nodeService;
 }
Exemple #4
0
 public HomeController(ISequenceService sequenceService,
                       Grit.Tree.ITreeService treeService,
                       INodeService nodeService,
                       IUserService userService)
 {
     this.SequenceService = sequenceService;
     this.NodeService     = nodeService;
     this.TreeService     = treeService;
     this.UserService     = userService;
 }