Exemplo n.º 1
0
        public void AddUserAccount(UserAccount userAccount)
        {
            if (Equals(userAccount, null))
                throw new ArgumentNullException("userAccount");

            DataSession.AddUserAccount(userAccount);
        }
Exemplo n.º 2
0
 public void DeleteUserAccount(UserAccount account)
 {
     DataContext.UserAccount.DeleteOnSubmit(account);
 }
Exemplo n.º 3
0
 public void AddUserAccount(UserAccount account)
 {
     DataContext.UserAccount.InsertOnSubmit(account);
 }
Exemplo n.º 4
0
 private void detach_UserAccount(UserAccount entity)
 {
     this.SendPropertyChanging();
     entity.UserRole = null;
 }
Exemplo n.º 5
0
partial         void UpdateUserAccount(UserAccount instance);
Exemplo n.º 6
0
partial         void InsertUserAccount(UserAccount instance);
Exemplo n.º 7
0
partial         void DeleteUserAccount(UserAccount instance);
Exemplo n.º 8
0
        public void DeleteUserAccount(UserAccount account)
        {
            if (Equals(account, null))
                throw new ArgumentNullException("account");

            DataSession.DeleteUserAccount(account);
        }