예제 #1
0
    private void GetGLLocking()
    {
        List <clsGLLocking> GLLocking = DCMemoBAL.GetGLLocking(Request.QueryString);

        if ((GLLocking != null) && GLLocking.Count > 0)
        {
            Response.Write(GLLocking.ToJSON());
        }
        else
        {
            Response.Write("No Result");
        }
    }