private Bill CreateBillUser(string username) { Bill result = billRepo.CreateBillForUser(username); billRepo.InsertBill(result); return(result); }