示例#1
0
        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;
        }
示例#2
0
 public ProductMasterController(
     IProductMasterService productMasterService,
     IRawSqlService rawSqlService
     )
 {
     _productMasterService = productMasterService;
     _rawSqlService        = rawSqlService;
 }
示例#3
0
        public DashboardController(

            IProductMasterService ProductMasterService
            , IDbContext dbContext
            )
        {
            _ProductMasterService = ProductMasterService;
            this._dbContext       = dbContext;
        }
示例#4
0
 public LanguageMasterController(
     ILanguageMasterService languageMasterService,
     ILocalizationService localizationService,
     IProductMasterService ProductMasterService
     )
 {
     _languageMasterService = languageMasterService;
     _localizationService   = localizationService;
     _ProductMasterService  = ProductMasterService;
 }
示例#5
0
 public DivisionMasterController(IDivisionService DivisionService,
                                 ILocalizationService localizationService,
                                 ILogger loggerService,
                                 ISeriesService mobjSeriesService,
                                 IProductMasterService ProductMasterService
                                 )
 {
     _DivisionService      = DivisionService;
     _localizationService  = localizationService;
     _loggerService        = loggerService;
     _mobjSeriesService    = mobjSeriesService;
     _ProductMasterService = ProductMasterService;
 }
示例#6
0
        public CustomProductController(

            IProductMasterService ProductMasterService
            , ICustomProductService CustomProductService
            , ILocalizationService localizationService
            , ICommonListService CommonListService
            , IDbContext dbContext

            )
        {
            _ProductMasterService = ProductMasterService;
            _localizationService  = localizationService;
            _CustomProductService = CustomProductService;
            _CommonListService    = CommonListService;
            this._dbContext       = dbContext;
        }
示例#7
0
 public ProductMasterController(IProductMasterService productMasterService)
 {
     _productMasterService = productMasterService;
 }
示例#8
0
 public ProductAPIController(IProductMasterService serv)
 {
     this.serv = serv;
 }