public DepreciationController(
     IAssetCategory repAssetCat,
     IAsset repAsset,
     IDepreciation repDepreciation,
     IPurchaseAsset repPurchaseAsset
     )
 {
     _repAssetCat      = repAssetCat;
     _repAsset         = repAsset;
     _repDepreciation  = repDepreciation;
     _repPurchaseAsset = repPurchaseAsset;
 }
Example #2
0
 public ReportController
 (
     IPurchaseAsset repPurchaseAsset,
     IAsset repAsset,
     IDepreciation repDepreciation,
     IActiveAsset repActiveAsset
 )
 {
     _repPurchaseAsset = repPurchaseAsset;
     _repAsset         = repAsset;
     _repDepreciation  = repDepreciation;
     _repActiveAsset   = repActiveAsset;
 }
Example #3
0
 public UserController(
     IUserAuthentication repUserAuth,
     IUser repUser,
     IAnnualBudget repAnnualBudget,
     IIRASPermission repIRASPermission,
     IDepreciation repDepreciation
     )
 {
     _repUserAuth       = repUserAuth;
     _repUser           = repUser;
     _repAnnualBudget   = repAnnualBudget;
     _repIRASPermission = repIRASPermission;
     _repDepreciation   = repDepreciation;
 }
 public HomeController
 (
     IUser repUser,
     IAnnualBudget repAnnualBudget,
     IPurchaseAsset repPurchaseAsset,
     IAsset repAsset,
     IDepreciation repDepreciation
 )
 {
     _repUser          = repUser;
     _repAnnualBudget  = repAnnualBudget;
     _repPurchaseAsset = repPurchaseAsset;
     _repAsset         = repAsset;
     _repDepreciation  = repDepreciation;
 }