public AkkaViewModel(IActorRefFactory actorSystem, IActorRef targetActor) : this() { Actor = actorSystem.ActorOf(AkkaModelViewActor.Props(this, targetActor)); }
public AkkaViewModel(IActorRefFactory actorSystem) : this() { Actor = actorSystem.ActorOf(AkkaModelViewActor.Props(this)); }