コード例 #1
0
ファイル: Instructions.cs プロジェクト: deomca/AdsWeb
        public static IList <Instructions> LoadByOrderId(int OrderId)
        {
            IList <Instructions> o       = new List <Instructions>();
            IInstructionsPersist persist = new InstructionsPersist();

            return(o = persist.LoadByOrderId(OrderId));
        }