Exemple #1
0
        public BaseController(IConfigurationCommon configurationCommon)
        {
            this._configurationCommon = configurationCommon;
            this._indexPageUrl        = "~/Home/Index/?errorMsg=";

            this._IsDebug = this._configurationCommon.Setting <bool>("WMP.IsDebug");
        }
Exemple #2
0
 public VendorController(IConfigurationCommon configurationCommon)
     : base(configurationCommon)
 {
 }
Exemple #3
0
 public PurchaseOrderController(IConfigurationCommon configurationCommon)
     : base(configurationCommon)
 {
 }
Exemple #4
0
 public ProductController(IConfigurationCommon configurationCommon)
     : base(configurationCommon)
 {
 }
Exemple #5
0
 public InventoryController(IConfigurationCommon configurationCommon)
     : base(configurationCommon)
 {
 }
 public InboundController(IConfigurationCommon configurationCommon)
     : base(configurationCommon)
 {
 }
Exemple #7
0
 public HomeController(IConfigurationCommon configurationCommon)
     : base(configurationCommon)
 {
 }