Exemplo n.º 1
0
 public bool AddManualPromotions(ManualPromotion manualPromotion, PromotionSiteMap promoSiteMap)
 {
     using (var context = ContextFactory.CreateContext())
     {
         using (var dbTran = context.Database.BeginTransaction())
         {
             try
             {
                 Context.ManualPromotion.Add(manualPromotion);
                 Context.PromotionSiteMap.Add(promoSiteMap);
                 Context.SaveChanges();
                 dbTran.Commit();
                 return(true);
             }
             catch (Exception ex)
             {
                 dbTran.Rollback();
                 throw ex;
             }
             finally
             {
                 context.Dispose();
             }
         }
     }
 }
Exemplo n.º 2
0
 public bool UpdateManualPromotions(ManualPromotion manualPromotion, PromotionSiteMap promoSiteMap)
 {
     using (var context = ContextFactory.CreateContext())
     {
         using (var dbTran = context.Database.BeginTransaction())
         {
             try
             {
                 var existPromotion = GetPromotionById(manualPromotion.PromotionId);
                 existPromotion.PromotionName        = manualPromotion.PromotionName;
                 existPromotion.PromotionValue       = manualPromotion.PromotionValue;
                 existPromotion.DiscPer              = manualPromotion.DiscPer;
                 existPromotion.FixedPriceOff        = manualPromotion.FixedPriceOff;
                 existPromotion.FixedSelling         = manualPromotion.FixedSelling;
                 existPromotion.UPDATEDON            = DateTime.Now;
                 existPromotion.IsApproved           = manualPromotion.IsApproved;
                 existPromotion.OfferActive          = manualPromotion.OfferActive;
                 Context.Entry(existPromotion).State = EntityState.Modified;
                 Context.SaveChanges();
                 dbTran.Commit();
                 return(true);
             }
             catch (Exception ex)
             {
                 dbTran.Rollback();
                 throw ex;
             }
             finally
             {
                 context.Dispose();
             }
         }
     }
 }