public AutoFillExtender(AutoFillExtenderXml xml, WebControl target)
 {
     _targetControl = target;
     _type = xml.Type;
     _filterId = xml.FilterId;
     this.Name = xml.Name;
 }
 public AutoFillExtender(WebControl targetControl, Globals.CallEntry.AutoFillType type, string filterId)
 {
     _targetControl = targetControl;
     _type = type;
     _filterId = filterId;
 }
 public AutoFillExtenderXml(string targetControlName, Globals.CallEntry.AutoFillType type, string filterId)
 {
     _targetControlName = targetControlName;
     _type = type;
     _filterId = filterId;
 }