コード例 #1
0
        public ProfileJsonAddressManager(IProfileJson aProfile)
        {
            _ProfileJsonManager = new ProfileJsonManager();
            _ProfileJson        = aProfile;

            var ProfileManger2 = (IProfileManager)_ProfileJsonManager;

            _Profile = ProfileManger2.GetProfileById(aProfile.ProfileId).Profile;

            _AddressPopulateMgr = new AddressPopulate(ProfileManger2, _Profile);
        }
コード例 #2
0
 public AddressPopulateSecondaryJson(IProfileManager aProfileManager, IProfile profile)
 {
     _ProfileManager  = aProfileManager;
     _Profile         = profile;
     _AddressCrudData = new AddressPopulate(_ProfileManager, _Profile);
 }