public static int DeleteCurrency(tCurrency currency)
 {
     try
     {
         return(AccountingDataProvider.DeleteCurrency(currency));
     }
     catch (Exception exception)
     {
         throw new Exception(exception.Message);
     }
 }