//  To pass 'Industries' data in IndustriesDAL Data Access Layer to show Active,Inactive type records
 public DataTable LoadIndustries(int LoggedInUser, string returnmsg)
 {
     IndustriesDAL IndustriesDAL = new IndustriesDAL();
     try
     {
         return IndustriesDAL.LoadIndustries(LoggedInUser, returnmsg);
     }
     catch
     {
         throw;
     }
     finally
     {
         IndustriesDAL = null;
     }
 }
    //  To pass 'Industries' data in IndustriesDAL Data Access Layer to show Active,Inactive type records
    public DataTable LoadIndustries(int LoggedInUser, string returnmsg)
    {
        IndustriesDAL IndustriesDAL = new IndustriesDAL();

        try
        {
            return(IndustriesDAL.LoadIndustries(LoggedInUser, returnmsg));
        }
        catch
        {
            throw;
        }
        finally
        {
            IndustriesDAL = null;
        }
    }