コード例 #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
ファイル: AnimationManager.cs プロジェクト: ddksaku/loreal
 void CustomerGroupAllocationManager_EntityChanged(object sender, CustomerGroupAllocation entity)
 {
     if (Allocations != null)
     {
         Allocations.UpdateTotalFixedAllocation();
     }
 }