Esempio n. 1
0
 public void Update(ApplyPromoter model)
 {
     if (model == null || model.Id <= 0)
     {
         return;
     }
     _applyRepository.Update(model);
 }
Esempio n. 2
0
 public void Insert(ApplyPromoter model)
 {
     if (model == null || model.Id > 0)
     {
         return;
     }
     _applyRepository.Insert(model);
 }