public void Update(Bill entity)
 {
     db.Update(entity);
 }
 public void Create(Bill entity)
 {
     db.Insert<Bill>(entity);
 }