Esempio n. 1
0
 public VendorController(
     IVendor repVendor,
     IAnnualBudget repAnnualBudget,
     IPurchaseAsset repPurchaseAsset
     )
 {
     _repVendor        = repVendor;
     _repAnnualBudget  = repAnnualBudget;
     _repPurchaseAsset = repPurchaseAsset;
 }
Esempio n. 2
0
 public PurchaseQuotationController
 (
     IAsset repAsset,
     IPurchaseQuotation repPurchaseQuotation,
     IAnnualBudget repAnnualBudget,
     IUser repUser
 )
 {
     _repAsset             = repAsset;
     _repPurchaseQuotation = repPurchaseQuotation;
     _repAnnualBudget      = repAnnualBudget;
     _repUser = repUser;
 }
Esempio n. 3
0
 public UserController(
     IUserAuthentication repUserAuth,
     IUser repUser,
     IAnnualBudget repAnnualBudget,
     IIRASPermission repIRASPermission,
     IDepreciation repDepreciation
     )
 {
     _repUserAuth       = repUserAuth;
     _repUser           = repUser;
     _repAnnualBudget   = repAnnualBudget;
     _repIRASPermission = repIRASPermission;
     _repDepreciation   = repDepreciation;
 }
Esempio n. 4
0
 public HomeController
 (
     IUser repUser,
     IAnnualBudget repAnnualBudget,
     IPurchaseAsset repPurchaseAsset,
     IAsset repAsset,
     IDepreciation repDepreciation
 )
 {
     _repUser          = repUser;
     _repAnnualBudget  = repAnnualBudget;
     _repPurchaseAsset = repPurchaseAsset;
     _repAsset         = repAsset;
     _repDepreciation  = repDepreciation;
 }
Esempio n. 5
0
 public BaseController(IAnnualBudget repAnnualBudget)
 {
     _repAnnualBudget = repAnnualBudget;
     budgetList       = _repAnnualBudget.GetCurrentBudgetId();
 }
 public BudgetController(IAnnualBudget repAnnualBudget)
 {
     _repAnnualBudget = repAnnualBudget;
 }