Как это может работать как служба WCF?
public class BusinessObject<T> where T : IEntity
{
public T Entity { get; set; }
public BusinessObject(T entity)
{
this.Entity = entity;
}
}
public interface IEntity { }
public class Student : IEntity
{
public int StudentID { get; set; }
public string Name { get; set; }
}
Я хочу предоставить класс BusinessObject и все классы, которые наследуют интерфейс IEntity в службе WCF.
Мой код на C #, .NET Framework 4.0, сборка в Visual Studio 2010 Pro.