コード例 #1
0
        //--------------CONSTRUCTOR-------------------//
        public RentManagementSystem(
            IStoreRentals rentalStorageArg,
            IStoreTenants tenantsStorageArg,
            IStoreAssignment assignStorageArg)

        {
            _tenantStorage = tenantsStorageArg;           //<= on doing the dependency injection
            _rentalStorage = rentalStorageArg;
            _assignStorage = assignStorageArg;
        }