Exemplo n.º 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;
 }
Exemplo n.º 2
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.º 3
0
 public HomeController(IRFQService rfqService)
 {
     this.rfqService = rfqService;
 }
Exemplo n.º 4
0
 public RFQController()
 {
     service = IoC.Resolve<IRFQService>("RFQService");
     buyerService = IoC.Resolve<IBuyerService>("BuyerService");
 }
Exemplo n.º 5
0
 public RFQController()
 {
     _RFQSerivce = new RFQService();
     dropDown    = new BusinessDropDownList();
 }
Exemplo n.º 6
0
 public SuppliersController(ICompanyService svs, IOptions <AppSettings> appSettings, IRFQService rfqService)
 {
     this.svs          = svs;
     this._appSettings = appSettings.Value;
     this.rfqService   = rfqService;
 }
Exemplo n.º 7
0
 public RFQController(IRFQService service)
 {
     _service = service;
 }
Exemplo n.º 8
0
 public RFQController()
 {
     service      = IoC.Resolve <IRFQService>("RFQService");
     buyerService = IoC.Resolve <IBuyerService>("BuyerService");
 }