/// <summary>
 /// To get the creation date of the user
 /// </summary>
 /// <param name="userId"></param>
 /// <returns></returns>
 public DateTime GetUserCreationDate(int userId)
 {
     UserInfoResource objUser = new UserInfoResource();
     return objUser.GetUserCreationDate(userId);
 }