コード例 #1
0
ファイル: SPKT.designer.cs プロジェクト: SPKT/MangXaHoi
 partial void DeleteProfileAttributeType(ProfileAttributeType instance);
コード例 #2
0
 public ProfileAttributeControl(Profile pro,ProfileAttributeType proAttrType, IProfileAttributeRepository repository)
 {
     _profile = pro;
     _ProfileAttributeType = proAttrType;
     _Repository = repository;
 }
コード例 #3
0
ファイル: SPKT.designer.cs プロジェクト: SPKT/MangXaHoi
 partial void UpdateProfileAttributeType(ProfileAttributeType instance);
コード例 #4
0
ファイル: SPKT.designer.cs プロジェクト: SPKT/MangXaHoi
 partial void InsertProfileAttributeType(ProfileAttributeType instance);
コード例 #5
0
ファイル: ViewProfilePresenter.cs プロジェクト: ngocpq/MHX2
 public ProfileAttribute GetProfileAttributeByProfileIDAndType(Profile profile, ProfileAttributeType type)
 {
     return _profileAttributeService.GetProfileAttributesByProfileIDAndTypeID(profile, type);
 }
コード例 #6
0
 public ProfileAttribute GetProfileAttributesByProfileIDAndTypeID(Profile profile, ProfileAttributeType type)
 {
     return _profileAttributeRepository.GetProfileAttributesByProfileIDAndTypeID(profile.ProfileID, type.ProfileAttributeTypeID);
 }
コード例 #7
0
ファイル: PrivacyService.cs プロジェクト: SPKT/MangXaHoi
 public PrivacyFlag SavePrivacyFlag(ProfileAttributeType profileAttributeType, Profile profileID)
 {
     throw new NotImplementedException();
 }