Ejemplo n.º 1
0
        public bool IsUserStaff(string username)
        {
            bool isStaff = false;

            try
            {
                isStaff = CustomerAccessor.IsCustomerStaff(username);
            }
            catch (Exception)
            {
                throw;
            }

            return(isStaff);
        }