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); }
public bool Destroy(object UserId) { return(AspnetProfile.Destroy(UserId) == 1); }
public bool Delete(object UserId) { return(AspnetProfile.Delete(UserId) == 1); }