Esempio n. 1
0
        public MiniBean SendMiniBean(string str, int iPrimitive)
        {
            var evObject = new MiniBean(str, iPrimitive);

            _serviceProvider.EPRuntime.SendEvent(evObject);
            return(evObject);
        }
Esempio n. 2
0
 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));
 }