ApplicationService.ClientService.ClientIsDeceased C# (CSharp) Method

ClientIsDeceased() public method

public ClientIsDeceased ( string clientId ) : void
clientId string
return void
        public void ClientIsDeceased(string clientId)
        {
            try
            {
                Client client = clientRepository.Get(clientId);
                client.ClientIsDeceased();
                unitOfWork.Commit();
            }
            catch (Exception ex)
            {
                HandleException(ex);
            }
        }