Example #1
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;
 }
Example #2
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;
 }
Example #3
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;
 }
Example #4
0
 public ServiceTagsController(IServiceTagsService svs, IOptions <AppSettings> appSettings)
 {
     this.svs          = svs;
     this._appSettings = appSettings.Value;
 }