public static TechDoc GetTechDoc(LoginUser loginUser, int techDocID)
        {
            TechDocs techDocs = new TechDocs(loginUser);

            techDocs.LoadByTechDocID(techDocID);
            if (techDocs.IsEmpty)
            {
                return(null);
            }
            else
            {
                return(techDocs[0]);
            }
        }
 public TechDoc(DataRow row, TechDocs techDocs) : base(row, techDocs)
 {
     _techDocs = techDocs;
 }