public GridViewTemplate(ListItemType itemType, string fieldName,int longitud, EnumInfoType infoType)
 {
     this.itemType = itemType;
     this.fieldName = fieldName;
     this.longitud = longitud;
     this.infoType = infoType;
 }
 public GridViewTemplate(ListItemType itemType, string headerName, string typeName, EnumInfoType infoType)
 {
     this.itemType = itemType;
     this.headerName = headerName;
     this.typeName = typeName;
     this.infoType = infoType;
 }
 public GridViewTemplate(ListItemType itemType, EnumInfoType infoType)
 {
     this.itemType = itemType;
     this.infoType = infoType;
 }