public object insertBill(string date, int price) { try { return(billDAL.insertBill(date, price)); } catch (Exception) { return(null); } }