ApplicationService.ClientService.OpenAccount C# (CSharp) 메소드

OpenAccount() 공개 메소드

public OpenAccount ( string clientId ) : void
clientId string
리턴 void
        public void OpenAccount(string clientId)
        {
            try
            {
                Client client = clientRepository.Get(clientId);
                client.OpenAccount(accountNumberService);
                unitOfWork.Commit();
            }
            catch (Exception ex)
            {
                HandleException(ex);
            }
        }