Esempio n. 1
0
        public static string GetProfilePicturePath(int UserID, ImageSize size)
        {
            UserBO objUser = new UserBO();

            objUser.ID = UserID;
            objUser.GetObject();

            return(UserBO.GetProfilePicturePath(objUser));
        }
Esempio n. 2
0
 public static string GetProfilePicturePath(UserBO objUser)
 {
     return(UserBO.GetProfilePicturePath(objUser, ImageSize.Default));
 }
Esempio n. 3
0
 public static string GetProfilePicturePath(int UserID)
 {
     return(UserBO.GetProfilePicturePath(UserID, ImageSize.Default));
 }