public AddendumController( IProductLicenseService ProductLicenseService, IProductMasterService ProductMasterService, ISettingService ISettingService, IExecutive ExecutiveService, IAddendumServices AddendumServices , ILocalizationService localizationService , IDbContext dbContext , IRepository <ProductLicenseUpdateDetails> ProductLicenseUpdateDetails , IRepository <AddendumDetails> AddendumDetails , IRepository <ImpressionDetails> ImpressionDetails , IRepository <ProductLicense> ProductLicense ) { _ProductLicenseService = ProductLicenseService; _AddendumServices = AddendumServices; _ExecutiveService = ExecutiveService; _ISettingService = ISettingService; _ProductMasterService = ProductMasterService; _localizationService = localizationService; this._dbContext = dbContext; this._ProductLicenseUpdateDetails = ProductLicenseUpdateDetails; this._AddendumDetails = AddendumDetails; this._ImpressionDetails = ImpressionDetails; this._ProductLicense = ProductLicense; }
public ProductMasterController( IProductMasterService productMasterService, IRawSqlService rawSqlService ) { _productMasterService = productMasterService; _rawSqlService = rawSqlService; }
public DashboardController( IProductMasterService ProductMasterService , IDbContext dbContext ) { _ProductMasterService = ProductMasterService; this._dbContext = dbContext; }
public LanguageMasterController( ILanguageMasterService languageMasterService, ILocalizationService localizationService, IProductMasterService ProductMasterService ) { _languageMasterService = languageMasterService; _localizationService = localizationService; _ProductMasterService = ProductMasterService; }
public DivisionMasterController(IDivisionService DivisionService, ILocalizationService localizationService, ILogger loggerService, ISeriesService mobjSeriesService, IProductMasterService ProductMasterService ) { _DivisionService = DivisionService; _localizationService = localizationService; _loggerService = loggerService; _mobjSeriesService = mobjSeriesService; _ProductMasterService = ProductMasterService; }
public CustomProductController( IProductMasterService ProductMasterService , ICustomProductService CustomProductService , ILocalizationService localizationService , ICommonListService CommonListService , IDbContext dbContext ) { _ProductMasterService = ProductMasterService; _localizationService = localizationService; _CustomProductService = CustomProductService; _CommonListService = CommonListService; this._dbContext = dbContext; }
public ProductMasterController(IProductMasterService productMasterService) { _productMasterService = productMasterService; }
public ProductAPIController(IProductMasterService serv) { this.serv = serv; }