public AttributesTypeLinkController(
            IAttributesTypeLinkService service,
            IAttributesService attributeService,
            ITypeLinkService typeLinkService) : base(service)
        {
            this.service         = service;
            this.typeLinkService = typeLinkService;

            ViewData.Add("AttributeID", new SelectList(attributeService.getAll(), "AttributeID", "description"));
        }
 public LinkBetweenRequirementsController(
     ILinkBetweenRequirementsService linkService,
     IRequirementService requirementService,
     ITypeLinkService typeLinkService,
     IUserService userService,
     IRequirementTraceabilityMatrixService matrixService) : base(linkService)
 {
     this.typeLinkService    = typeLinkService;
     this.matrixService      = matrixService;
     this.linkService        = linkService;
     this.requirementService = requirementService;
 }
 public TypeLinkController(ITypeLinkService service, IUserService userService) : base(service)
 {
 }