TeamMentor.CoreLib.TM_WebServices.UpdateUser C# (CSharp) Method

UpdateUser() private method

private UpdateUser ( int userId, string userName, string firstname, string lastname, string title, string company, string email, string country, string state, DateTime accountExpiration, bool passwordExpired, bool userEnabled, bool accountNeverExpires, int groupId ) : bool
userId int
userName string
firstname string
lastname string
title string
company string
email string
country string
state string
accountExpiration DateTime
passwordExpired bool
userEnabled bool
accountNeverExpires bool
groupId int
return bool
        public bool UpdateUser(int userId, string userName, 
                                                                                                           string firstname, string lastname, 
                                                                                                           string title, string company, string email, string country,
                                                                                                           string state, DateTime accountExpiration, bool passwordExpired,
                                                                                                           bool userEnabled, bool accountNeverExpires, int groupId)
        {
            admin.demand(); return userData.updateTmUser(userId, userName, firstname, lastname, title, company, email,country, state, accountExpiration, passwordExpired, userEnabled,accountNeverExpires, groupId);
        }
TM_WebServices