예제 #1
0
파일: CouponBL.cs 프로젝트: yoorke/pinshop
 public List<CouponType> GetCouponTypes(bool addSelect)
 {
     List<CouponType> couponTypes = new CouponDL().GetCouponTypes();
     if (addSelect)
         couponTypes.Insert(0, new CouponType(-1, "Odaberi"));
     return couponTypes;
 }
예제 #2
0
파일: CouponBL.cs 프로젝트: yoorke/pinshop
 public Coupon GetCoupon(string code)
 {
     CouponDL couponDL = new CouponDL();
     return couponDL.GetCoupon(code);
 }