public void LoadDefinition(IFlowSession session) { ProductTypeLogic.LoadDefinition(session); }
/// <summary> /// /// </summary> /// <param name="session"></param> public void PreloadDefinition(IFlowSession session) { IList<Category> categories = CategoryDao.FindAll(new ObjectCriteria<Category>()); session.Put(FlowConstants.CATEGORY_LIST,categories); IList<ProductType> productTypes = ProductTypeDao.FindAll(new ObjectCriteria<ProductType>()); session.Put(FlowConstants.PRODUCT_TYPE_LIST,productTypes); IList<ExProductColor> productColors = ProductColorDao.FindAll(new ObjectCriteria<ExProductColor>()); session.Put(FlowConstants.PRODUCT_COLOR_LIST, productColors); IList<ExProductSize> productSizes = ProductSizeDao.FindAll(new ObjectCriteria<ExProductSize>()); session.Put(FlowConstants.PRODUCT_SIZE_LIST, productSizes); }
public void LoadDefinition(IFlowSession session) { IList<ExProductSize> productSizes = ExProductSizeDao.FindAll(new ObjectCriteria<ExProductSize>()); session.Put(FlowConstants.PRODUCT_SIZE_LIST, productSizes); }
public void LoadDefinition(IFlowSession flowSession) { IList<Department> departments = DepartmentDao.FindAll(new ObjectCriteria<Department>()); flowSession.Put(FlowConstants.DEPARTMENTS, departments); }
public void LoadDefinition(IFlowSession iFlowSession) { IList<Category> categories = CategoryDao.FindAll(new ObjectCriteria<Category>()); iFlowSession.Put(FlowConstants.CATEGORY_LIST, categories); }
public void Process(IFlowSession session) { }
public void LoadProductColorDefinition(IFlowSession flowSession) { IList<ExProductColor> productColors = ExProductColorDao.FindAll(new ObjectCriteria<ExProductColor>()); flowSession.Put(FlowConstants.PRODUCT_COLOR_LIST, productColors); }