/// <summary> /// Sets the User's amount to pay based on what is stored in the database. See UtilityCashFlow /// </summary> protected void SetUpUser() { Session["amountToPay"] = utility.GetAmountToPay(); if (!utility.GetIsAdminUser() && !utility.GetIsCMUser() && !utility.GetIsDeptUser()) { Response.Redirect(VariablesCashManager.NO_ACCESS_PAGE); } }