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

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