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 ProfileManager(IProfileJsonManager profileJsonMngr)
 {
     _ProjectManagerData = profileJsonMngr;
 }