/// <summary>
 /// Get all movements from a specified account
 /// </summary>
 /// <param name="accountId"></param>
 /// <returns></returns>
 public async Task <IEnumerable <Movement> > GetAll(int accountId)
 {
     return(await _repository.GetMovementsByAccount(accountId));
 }