我正在尝试为我的项目构建业务逻辑。该项目使用了 4 个不同的 WCF 源,它们都提供了类似的产品。我想实现一个涵盖这 4 个产品的产品,例如:
class WCF1.Product {
string Name;
int ID;
string Image;
string Brand;
}
class WCF2.ProductDetail {
string ProductName;
int Identity;
string Photo;
string Color;
}
class WCF3.ProductInfo {
string Name;
int ID;
string Image;
}
class WCF4.Product {
string ProductName;
int Identity;
string Photo;
double Weight;
}
至少我想拥有
class Product {
string Name;
int ID;
string Photo;
string Brand;
string Color;
double Weight;
}
在这两个类上,ID 或Identify 代表每个产品的唯一ID。那么我怎样才能从所有源类中获得这样的摘要或覆盖类。
提前致谢