SecurityInnovation.TeamMentor.WebClient.WebServices.TM_Xml_Database_JavaScriptProxy.UpdateUser C# (CSharp) Method

UpdateUser() public method

public UpdateUser ( int userId, string userName, string firstname, string lastname, string title, string company, string email, int groupId ) : bool
userId int
userName string
firstname string
lastname string
title string
company string
email string
groupId int
return bool
        public bool UpdateUser(int userId, string userName, 
            string firstname, string lastname,
            string title, string company,
            string email, int groupId)
        {
            return tmXmlDatabase.updateTmUser(userId, userName, firstname, lastname, title, company, email, groupId);
        }