Ejemplo n.º 1
0
 public bool UpdateOffer(string offerDate, string offerName, string offerDescription, string offerDiscount)
 {
     AdminDal obj = new AdminDal();
     return obj.UpdateOfferByDate(UtilityFunctions.parseInputDateToDBFormat(offerDate), offerName, offerDescription, offerDiscount);
 }