예제 #1
0
        public void SaveDetail()
        {
            foreach (string id in _AddList)
            {
                proxy.AddPODetail(_PODetails.Find(o => o.Id == id));
            }

            foreach (string id in _DelList)
            {
                proxy.DeletePODetail(id);
            }
        }