public CounterNameInfo(string name, int id, int parentCategoryId)
 {
     _sourceCache = new CounterSourceInfoCache(parentCategoryId, id);
     _instanceCache = new CounterInstanceInfoCache(parentCategoryId,id);
     _extDataCache = new CounterExtDataInfoCache(parentCategoryId, id);
     Name = name;
     Id = id;
 }
 public CounterNameInfo(string name, int id, int parentCategoryId)
 {
     _sourceCache   = new CounterSourceInfoCache(parentCategoryId, id);
     _instanceCache = new CounterInstanceInfoCache(parentCategoryId, id);
     _extDataCache  = new CounterExtDataInfoCache(parentCategoryId, id);
     Name           = name;
     Id             = id;
 }