public static int UpdateAccountingYear(tAccountingYear tAccountingYear)
 {
     try
     {
         return(AccountingDataProvider.UpdateAccountingYear(tAccountingYear));
     }
     catch (SqlException ex)
     {
         throw new BusinessApplicationException("Error in busines logic of UpdateAccountingYear", ex);
     }
 }