Esempio n. 1
0
        public void Insert(Guid UserId, string PropertyNames, string PropertyValuesString, byte[] PropertyValuesBinary, DateTime LastUpdatedDate)
        {
            AspnetProfile item = new AspnetProfile();

            item.UserId = UserId;

            item.PropertyNames = PropertyNames;

            item.PropertyValuesString = PropertyValuesString;

            item.PropertyValuesBinary = PropertyValuesBinary;

            item.LastUpdatedDate = LastUpdatedDate;


            item.Save(UserName);
        }
Esempio n. 2
0
 public bool Destroy(object UserId)
 {
     return(AspnetProfile.Destroy(UserId) == 1);
 }
Esempio n. 3
0
 public bool Delete(object UserId)
 {
     return(AspnetProfile.Delete(UserId) == 1);
 }