private static string getFecthXmlString(List <ViewFeo> viewFeoList, FetchType fecthObj)
 {
     foreach (ViewFeo viewFeo in viewFeoList)
     {
         if (viewFeo.AttributeObj != null)
         {
             addNewAttributeToFech(fecthObj, viewFeo.AttributeName, viewFeo.AttributeObj);
         }
         else
         {
             throw new Exception("Relation Not Found");
         }
     }
     return(FormXmlMapper.MapObjToFetchXml(fecthObj));
 }