예제 #1
0
        public async Task <bool> InsertAsync(Clientes cliente)
        {
            var resp = await _clienteRepository.InsertAsync(cliente);

            if (resp)
            {
                this.SendEmail(cliente);
            }

            return(resp);
        }