本文整理汇总了C#中DataManager.ModifyProfile方法的典型用法代码示例。如果您正苦于以下问题:C# DataManager.ModifyProfile方法的具体用法?C# DataManager.ModifyProfile怎么用?C# DataManager.ModifyProfile使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DataManager
的用法示例。
在下文中一共展示了DataManager.ModifyProfile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestUpdateProfileData
public void TestUpdateProfileData()
{
var dataManager = new DataManager();
/*
var userData = new UserData
{
UserID = 34,
UserName = "DPuddy",
FirstName = "David",
LastName = "Puddy",
Email = "[email protected]",
DisplayName = "Pud6dy9",
PhoneNumber = "3016969696",
Password = "Six6969"
};
ProfileEntity userResponse = new ProfileEntity
{
Id = 8,
ID = 12,
QuestionID = 1
};
ProfileEntity matchResponseUpdate = new ProfileEntity
{
Id = 11,
ID = 13,
QuestionID = 2
};
ProfileEntity matchResponseNew = new ProfileEntity
{
Id = 27,
};
List<ProfileEntity> userRespounses = new List<ProfileEntity>();
userRespounses.Add(userResponse);
List<ProfileEntity> matchRespounses = new List<ProfileEntity>();
matchRespounses.Add(matchResponseUpdate);
matchRespounses.Add(matchResponseNew);
var userProfileData = new UserProfileData { UserData = userData,
UserResponses = userRespounses,
MatchResponses = matchRespounses
};
dataManager.ModifyProfile(userProfileData);
*/
/*
if (data.UserData != null)
{
data.UserData.DisplayName = "Giddy6969";
ProfileEntity userResponse = new ProfileEntity
{
Id = 17,
ResponseTypeID = 2
};
List<ProfileEntity> userRespounses = new List<ProfileEntity>();
userRespounses.Add(userResponse);
ProfileEntity matchResponse = new ProfileEntity
{
Id = 19,
ResponseTypeID = 2
};
ProfileEntity matchResponse2 = new ProfileEntity
{
Id = 20,
ResponseTypeID = 2
};
List<ProfileEntity> matchRespounses = new List<ProfileEntity>();
matchRespounses.Add(matchResponse);
matchRespounses.Add(matchResponse2);
var userProfileData = new UserProfileData
{
UserData = data.UserData,
//UserResponses = userRespounses,
MatchResponses = matchRespounses
};
dataManager.ModifyProfile(userProfileData);
}
*/
var userDataPuddy = new UserProfileRequest
{
//UserID = 69,
UserName = "pjlove",
ProfileAttributeType = ProfileAttributeTypeEnum.All
};
//.........这里部分代码省略.........
示例2: TestMatch
public void TestMatch()
{
MatchLogic matchLogic = new MatchLogic();
var dataManager = new DataManager();
MatchRequest req = new MatchRequest();
var userDataPuddy = new UserProfileRequest
{
//UserID = 69,
UserName = "SRoss",
ProfileAttributeType = ProfileAttributeTypeEnum.All
};
UserProfileData match = dataManager.FetchProfile(userDataPuddy);
// This is elaine.
req.UserID = 6969;
MatchResponse response = matchLogic.GetMatchByLocation(req);
if (response != null)
{
if (response.MatchProfiles != null && response.MatchProfiles.Count() > 0)
{
foreach (ChoiceProfile cp in response.MatchProfiles)
{
cp.ChoiceType = ChoiceTypeEnum.Like;
}
// Add the match profiles
var userProfileData = new UserProfileData
{
UserData = match.UserData,
UserChoices = response.MatchProfiles
};
dataManager.ModifyProfile(userProfileData);
}
}
}