//  To pass 'Training Impact On' data in TrainingImpactOnDAL Data Access Layer to show Active,Inactive type records
 public DataTable LoadTrainingImpactOn(int LoggedInUser, string Ret)
 {
     TrainingImpactOnDAL TrainingImpactOnDAL = new TrainingImpactOnDAL();
     try
     {
         return TrainingImpactOnDAL.LoadTrainingImpactOn(LoggedInUser, Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         TrainingImpactOnDAL = null;
     }
 }
    //  To pass 'Training Impact On' data in TrainingImpactOnDAL Data Access Layer to show Active,Inactive type records
    public DataTable LoadTrainingImpactOn(int LoggedInUser, string Ret)
    {
        TrainingImpactOnDAL TrainingImpactOnDAL = new TrainingImpactOnDAL();

        try
        {
            return(TrainingImpactOnDAL.LoadTrainingImpactOn(LoggedInUser, Ret));
        }
        catch
        {
            throw;
        }
        finally
        {
            TrainingImpactOnDAL = null;
        }
    }