, MEF, . , , .
, . IService ( [ImportMany] ), .
, , . , , , :
public interface IDataRepostory
{
public IList<MyType> MyTypes { get; }
}
:
[Export(typeof(IDataRepository))]
public class Repository: IDataRepostory
{
}
. , , , . , :
public class CustomersViewModel
{
[Import]
public IDataRepository
{
get; set;
}
}
, .
"Application Service", - - , , .