Exemple #1
0
 public void Update(Price price)
 {
     dal.Update(price);
 }
Exemple #2
0
 public bool IsExistWhileUpdate(Price price)
 {
     return dal.IsExistWhileUpdate(price.YearValue, price.Mon, price.Id.ToString());
 }
Exemple #3
0
 public void Add(Price price)
 {
     dal.Add(price);
 }
Exemple #4
0
 public void Del(Price price)
 {
     dal.Del(price);
 }
Exemple #5
0
 public bool IsExistWhileUpdate(Price price)
 {
     return dal.IsExistWhileUpdate(price);
 }