コード例 #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);
        }