Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 6th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. MEF Import issue
  2. [Export(typeof(IUserProfileService))]
  3. [PartCreationPolicy(CreationPolicy.Shared)]
  4. public class UserProfileService : IUserProfileService
  5. {
  6.     ...
  7. }
  8.  
  9. public class RelayCommand<T> : ICommand
  10. {
  11.     [Import]
  12.     private IUserProfileService UserProfileService { get; set; }
  13.     ...
  14. }