예제 #1
0
파일: BLLPrice.cs 프로젝트: HuGuo/wbs
 public void Update(Price price)
 {
     dal.Update(price);
 }
예제 #2
0
파일: BLLPrice.cs 프로젝트: HuGuo/wbs
 public bool IsExistWhileUpdate(Price price)
 {
     return dal.IsExistWhileUpdate(price.YearValue, price.Mon, price.Id.ToString());
 }
예제 #3
0
파일: BLLPrice.cs 프로젝트: HuGuo/wbs
 public void Add(Price price)
 {
     dal.Add(price);
 }
예제 #4
0
파일: BLLPrice.cs 프로젝트: HuGuo/wbs
 public void Del(Price price)
 {
     dal.Del(price);
 }
예제 #5
0
파일: BLLDegree.cs 프로젝트: HuGuo/wbs
 public bool IsExistWhileUpdate(Price price)
 {
     return dal.IsExistWhileUpdate(price);
 }