예제 #1
0
    public Defect gettask(string ttid)
    {
        if (string.IsNullOrEmpty(ttid))
        {
            return(null);
        }
        Defect d = new Defect(Convert.ToInt32(ttid));

        if (!d.IsLoaded())
        {
            return(null);
        }
        return(d);
    }