예제 #1
0
파일: TestBase.cs 프로젝트: ddksaku/loreal
        protected CustomerGroupAllocation CreateCustomerGroupAllocation(CustomerGroup customerGroup, AnimationProductDetail animationProductDetail)
        {
            CustomerGroupAllocation groupAllocation = new CustomerGroupAllocation();
            groupAllocation.ID = Guid.NewGuid();
            groupAllocation.CustomerGroup = customerGroup;
            groupAllocation.AnimationProductDetail = animationProductDetail;
          

            return groupAllocation;
        }
예제 #2
0
 void CustomerGroupAllocationManager_EntityChanged(object sender, CustomerGroupAllocation entity)
 {
     if (Allocations != null)
     {
         Allocations.UpdateTotalFixedAllocation();
     }
 }