コード例 #1
0
        public static CustomerOrderTable Instance(IDataAccess access)
        {
            if (instance == null)
            {
                instance = new CustomerOrderTable(access);
            }

            return(instance);
        }