public VendorController( IVendor repVendor, IAnnualBudget repAnnualBudget, IPurchaseAsset repPurchaseAsset ) { _repVendor = repVendor; _repAnnualBudget = repAnnualBudget; _repPurchaseAsset = repPurchaseAsset; }
public DepreciationController( IAssetCategory repAssetCat, IAsset repAsset, IDepreciation repDepreciation, IPurchaseAsset repPurchaseAsset ) { _repAssetCat = repAssetCat; _repAsset = repAsset; _repDepreciation = repDepreciation; _repPurchaseAsset = repPurchaseAsset; }
public ReportController ( IPurchaseAsset repPurchaseAsset, IAsset repAsset, IDepreciation repDepreciation, IActiveAsset repActiveAsset ) { _repPurchaseAsset = repPurchaseAsset; _repAsset = repAsset; _repDepreciation = repDepreciation; _repActiveAsset = repActiveAsset; }
public HomeController ( IUser repUser, IAnnualBudget repAnnualBudget, IPurchaseAsset repPurchaseAsset, IAsset repAsset, IDepreciation repDepreciation ) { _repUser = repUser; _repAnnualBudget = repAnnualBudget; _repPurchaseAsset = repPurchaseAsset; _repAsset = repAsset; _repDepreciation = repDepreciation; }