public List <Employee> GetData(string tableName)
        {
            Adaptee <Employee> _Adaptee = new Adaptee <Employee>();

            return(_Adaptee.GetDBData(tableName));
        }
        List <T> IAdapter <T> .GetData(string tableName)
        {
            Adaptee <T> _Adaptee = new Adaptee <T>();

            return(_Adaptee.GetDBData(tableName));
        }
        public List <Branch> GetData(string tableName)
        {
            Adaptee <Branch> _Adaptee = new Adaptee <Branch>();

            return(_Adaptee.GetDBData(tableName));
        }
Ejemplo n.º 4
0
        public List <Designation> GetData(string tableName)
        {
            Adaptee <Designation> _Adaptee = new Adaptee <Designation>();

            return(_Adaptee.GetDBData(tableName));
        }