コード例 #1
0
        public List <Employee> GetData(string tableName)
        {
            Adaptee <Employee> _Adaptee = new Adaptee <Employee>();

            return(_Adaptee.GetDBData(tableName));
        }
コード例 #2
0
        List <T> IAdapter <T> .GetData(string tableName)
        {
            Adaptee <T> _Adaptee = new Adaptee <T>();

            return(_Adaptee.GetDBData(tableName));
        }
コード例 #3
0
        public List <Branch> GetData(string tableName)
        {
            Adaptee <Branch> _Adaptee = new Adaptee <Branch>();

            return(_Adaptee.GetDBData(tableName));
        }
コード例 #4
0
        public List <Designation> GetData(string tableName)
        {
            Adaptee <Designation> _Adaptee = new Adaptee <Designation>();

            return(_Adaptee.GetDBData(tableName));
        }