public MiniBean SendMiniBean(string str, int iPrimitive) { var evObject = new MiniBean(str, iPrimitive); _serviceProvider.EPRuntime.SendEvent(evObject); return(evObject); }
public bool Equals(MiniBean other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(other.IntPrimitive == IntPrimitive && Equals(other.TheString, TheString)); }