- MEF Import issue
- [Export(typeof(IUserProfileService))]
- [PartCreationPolicy(CreationPolicy.Shared)]
- public class UserProfileService : IUserProfileService
- {
- ...
- }
- public class RelayCommand<T> : ICommand
- {
- [Import]
- private IUserProfileService UserProfileService { get; set; }
- ...
- }