コード例 #1
0
 public void Update(ApplyPromoter model)
 {
     if (model == null || model.Id <= 0)
     {
         return;
     }
     _applyRepository.Update(model);
 }
コード例 #2
0
 public void Insert(ApplyPromoter model)
 {
     if (model == null || model.Id > 0)
     {
         return;
     }
     _applyRepository.Insert(model);
 }