private void assertCurrencyAlreadyExist(string currencyId, string organizationId)
 {
     if (!_repository.CurrencyExist(currencyId, organizationId))
     {
         throw new Exception("Mata Uang tidak ditemukan.");
     }
 }