using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; /* ***********************************************  * subject 数据总线接口,定义主动取得数据  * author 张原川  * date   2019/6/3 11:25:11  * ***********************************************/ namespace BPASmartClient.Bus.DataBus { public interface IGivenDataBus: IDataBus { /// /// 数据取出 /// /// TData Get(); /// /// 数据取出 /// /// TData[] Get(int count); } }