public static tAccountingYear GetAccountingYearById(int companyId, int accountYearId)
 {
     try
     {
         return(AccountingDataProvider.GetAccountingYearById(companyId, accountYearId));
     }
     catch (Exception exception)
     {
         throw new Exception(exception.Message);
     }
 }