/// <summary> /// Gets the design details of the specified design. /// </summary> /// <param name="designId">Internal identifier of the design.</param> /// <returns>Design details of the specified design.</returns> public DesignInfo Get(int designId) { // Get an instance of the Design DAO using the DALFactory IDesign dao = (IDesign)DALFactory.DAO.Create(DALFactory.Module.Design); DesignInfo design = dao.Get(designId); return(design); }