using System; using System.Collections.Generic; using System.Text; using System.Data; using Server.Data; namespace Server.Data { public class Data_Serveur_ctrl { private Comm_calls_Data_Server_Impl implInterfaceForComm; public Data_Serveur_ctrl() { implInterfaceForComm = new Comm_calls_Data_Server_Impl(); } public Comm_calls_Data_Server_Impl getImplInterfaceForComm() { return implInterfaceForComm; } } }