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