Exemplo n.º 1
0
        public async Task RegisterNewCustomerAndSendMail(Customer customer)
        {
            await _customerServices.CreateAsync(customer);

            await _sendMailServices.Send(customer);
        }