Beispiel #1
0
 partial void DeleteProfileAttributeType(ProfileAttributeType instance);
 public ProfileAttributeControl(Profile pro,ProfileAttributeType proAttrType, IProfileAttributeRepository repository)
 {
     _profile = pro;
     _ProfileAttributeType = proAttrType;
     _Repository = repository;
 }
Beispiel #3
0
 partial void UpdateProfileAttributeType(ProfileAttributeType instance);
Beispiel #4
0
 partial void InsertProfileAttributeType(ProfileAttributeType instance);
Beispiel #5
0
 public ProfileAttribute GetProfileAttributeByProfileIDAndType(Profile profile, ProfileAttributeType type)
 {
     return _profileAttributeService.GetProfileAttributesByProfileIDAndTypeID(profile, type);
 }
Beispiel #6
0
 public ProfileAttribute GetProfileAttributesByProfileIDAndTypeID(Profile profile, ProfileAttributeType type)
 {
     return _profileAttributeRepository.GetProfileAttributesByProfileIDAndTypeID(profile.ProfileID, type.ProfileAttributeTypeID);
 }
Beispiel #7
0
 public PrivacyFlag SavePrivacyFlag(ProfileAttributeType profileAttributeType, Profile profileID)
 {
     throw new NotImplementedException();
 }