public async void AddPayment(string from, string to, decimal amount, EPaymentType paymentType)
        {
            var payment = new Payment(from, to, amount, paymentType);

            await _paymentsRepository.Create(payment);
        }