예제 #1
0
 public bool Update(Product_Price price)
 {
     _repository.Update(price);
     _unitOfWork.CommitChanges();
     return true;
 }
예제 #2
0
 public bool Insert(Product_Price price)
 {
     _repository.Add(price);
     _unitOfWork.CommitChanges();
     return true;
 }