Example #1
0
 public void Delete(ExProductColor data)
 {
     ExProductColorDao.Delete(data);
 }
Example #2
0
 public ExProductColor Add(ExProductColor data)
 {
     ExProductColorDao.Add(data);
     return data;
 }
Example #3
0
        protected bool Equals(ExProductColor entity)
        {
            if (entity == null) return false;
            if (!base.Equals(entity)) return false;

            return true;
        }
Example #4
0
 public void Update(ExProductColor data)
 {
     ExProductColorDao.Update(data);
 }
 protected override void OnInitialize()
 {
     ProductColorLogic.LoadProductColorDefinition(Flow.Session);
     IList list = null;
     list = Flow.Session.Get(FlowConstants.PRODUCT_COLOR_LIST) as IList;
     //if (list == null) list = new ArrayList();
     ProductColorList = list;
     SelectedProductColor = new ExProductColor();
     IsCreateOrUpdate = false;
 }