Ejemplo n.º 1
0
 private static void UpdateObtainPoint(List <CustomerGuideEntity> success1List)
 {
     foreach (CustomerGuideEntity item in success1List)
     {
         SendCustomerGuidePointsDA.UpdateObtainPoint(item);
     }
 }
Ejemplo n.º 2
0
        public void Process()
        {
            TestCustomerGuideSysNo = 0;
            int.TryParse(ConfigurationManager.AppSettings["TestCustomerGuideSysNo"], out TestCustomerGuideSysNo);

            List <CustomerGuideEntity> customerGuideList = SendCustomerGuidePointsDA.GetAllCustomerGuideList();

            customerGuideList = FilterByTestSysNo(customerGuideList);
            List <CustomerGuideEntity> success1List = SendCommentPoint(customerGuideList);

            UpdateObtainPoint(success1List);
        }