示例#1
0
        public void UpdateAccountRole(AccountRole accountRole)
        {
            if (accountRole == null)
                throw new ArgumentNullException("accountRole");

            _accountRoleRepository.Update(accountRole);
        }
示例#2
0
        public void InsertAccountRole(AccountRole accountRole)
        {
            if(accountRole == null)
                throw new ArgumentNullException("accountRole");

            _accountRoleRepository.Insert(accountRole);
        }