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