/// <summary>
 /// Initializes a new instance of <see cref="T:Microsoft.ServiceFabric.Actors.Runtime.Actor" />
 /// </summary>
 /// <param name="constructorContext"></param>
 public IoCEnabledActorBase(IActorConstructorContext constructorContext)
     : base(constructorContext.ActorService, constructorContext.ActorId)
 {
     constructorContext.RegisterActorInstance(StateManager);
 }
 /// <summary>
 /// Initializes a new instance of <see cref="T:Microsoft.ServiceFabric.Actors.Runtime.Actor" />
 /// </summary>
 /// <param name="constructorContext"></param>
 public DeviceSensor(IActorConstructorContext constructorContext) : base(constructorContext)
 {
 }