我的应用程序具有 n 层架构。我有不同的层(业务逻辑和数据链接和 GUI)。我正在使用一些通用类将数据从一层传递到另一层。我有一个RetrnValueCls
只有两个变量Return value
和Return Message
. 当我将数据从一层传递到另一层时,我需要返回这个Return Value
类以及MasterItemsCls
具有其他变量的另一个类(比如)。
下面是方法
public MasterItemsCls GetMasterItemsMDL()
{
/* Does some computations and assign them to
attributes of MasterItemsCls and pass it other methods in other layers. */
}
public ReturnValueCls GetMasterItemsMDL()
{
/* Does some computations and assign them to
attributes of ReturnValueCls and pass it other methods in other layers. */
}
我想同时返回上述两个类(MasterItemsCls
& ReturnValueCls
)作为该方法GetMasterItemsMDL
的返回类型,而且我不想将这两个类结合起来。请让我知道是否有任何方法可以做到这一点。