Exemplo n.º 1
0
 public IndustryController(
     ILogger <IndustryController> logger,
     IOptions <AppOptions> appOptions,
     IIndustryService industryService) : base(logger, appOptions)
 {
     Guard.Against.Null(industryService, nameof(industryService));
     _industryService = industryService;
 }
Exemplo n.º 2
0
 public RfqsController(IIndustryService industryService, IServiceTagsService serviceTagsService, ICompanyService companyService, IUserService userService, IRoleService roleService, IRFQService svs, IOptions <AppSettings> appSettings)
 {
     this.svs                = svs;
     this._appSettings       = appSettings.Value;
     this.industryService    = industryService;
     this.serviceTagsService = serviceTagsService;
     this.companyService     = companyService;
     this.userService        = userService;
     this.roleService        = roleService;
 }
Exemplo n.º 3
0
        public FrmAccount(
            IIndustryService industryService,
            IAccountService accountService
            )
        {
            InitializeComponent();

            this._industryService = industryService;
            this._accountService  = accountService;
        }
Exemplo n.º 4
0
 public HomeController(IJobService jobService, IIndustryService industryService,
                       IConfiguration configuration, IWishlistService wishlistService, IUserService userService,
                       IEmailSubscriberService emailSubscriberService)
 {
     this._jobService             = jobService;
     this._industryService        = industryService;
     this._configuration          = configuration;
     this._wishlistService        = wishlistService;
     this._userService            = userService;
     this._emailSubscriberService = emailSubscriberService;
 }
Exemplo n.º 5
0
 public RegistrationController(IIndustryService industryService,
                               ICompanyService companyService,
                               IServiceTagsService serviceTagsService,
                               IUserService userService,
                               IOptions <AppSettings> appSettings)
 {
     this.industryService    = industryService;
     this.companyService     = companyService;
     this.serviceTagsService = serviceTagsService;
     this.userService        = userService;
     this._appSettings       = appSettings.Value;
 }
Exemplo n.º 6
0
 public JobController(IJobService jobService, IIndustryService industryService,
                      IConfiguration configuration, ITagService tagService, IWishlistService wishlistService,
                      IUserService userService, IVisitorReportService visitorReportService, IEmailSender emailSender)
 {
     this._tagService           = tagService;
     this._jobService           = jobService;
     this._industryService      = industryService;
     this._configuration        = configuration;
     this._wishlistService      = wishlistService;
     this._userService          = userService;
     this._visitorReportService = visitorReportService;
     this._emailSender          = emailSender;
 }
Exemplo n.º 7
0
        public _dialogAccountEdit
        (
            IAccountService accountService,
            IUserService userService,
            IDictionaryService dictionaryService,
            IIndustryService industryService
        )
        {
            InitializeComponent();

            this._accountService    = accountService;
            this._userService       = userService;
            this._dictionaryService = dictionaryService;
            this._industryService   = industryService;
        }
Exemplo n.º 8
0
 public PublicController(IRFQService rfqService,
                         ICompanyService companyService,
                         IServiceTagsService serviceTagsService,
                         IIndustryService industryService,
                         IOptions <AppSettings> appSettings,
                         IUserService userService,
                         IAttachmentService attachmentService, IBlogService blogService)
 {
     this.rfqService         = rfqService;
     this.industryService    = industryService;
     this.companyService     = companyService;
     this.serviceTagsService = serviceTagsService;
     this.userService        = userService;
     this._appSettings       = appSettings.Value;
     this.attachmentService  = attachmentService;
     this.blogService        = blogService;
 }
Exemplo n.º 9
0
 public IndustryController(IIndustryService industries)
 {
     this.industries = industries;
 }
 public IndustryController(IIndustryService industryService)
 {
     _industryService = industryService;
 }
 public RemoveIndustryHandler(IIndustryService industryService)
 {
     _industryService = industryService;
 }
Exemplo n.º 12
0
 public IndustryController(IIndustryService industries)
 {
     this.industries = industries;
 }
 public AddIndustryHandler(IIndustryService industryService)
 {
     _industryService = industryService;
 }
Exemplo n.º 14
0
 public IndustriesController(IIndustryService svs, IOptions <AppSettings> appSettings)
 {
     this.svs          = svs;
     this._appSettings = appSettings.Value;
 }
 public GetIndustriesHandler(IIndustryService industryService)
 {
     _industryService = industryService;
 }
Exemplo n.º 16
0
 public Industry(IIndustryService industryService)
     : this()
 {
     this.IndustryService = industryService;
 }