Example #1
0
        protected CustomerGroupAllocation CreateCustomerGroupAllocation(CustomerGroup customerGroup, AnimationProductDetail animationProductDetail)
        {
            CustomerGroupAllocation groupAllocation = new CustomerGroupAllocation();
            groupAllocation.ID = Guid.NewGuid();
            groupAllocation.CustomerGroup = customerGroup;
            groupAllocation.AnimationProductDetail = animationProductDetail;
          

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