public WishListController()
 {
     _mapper = AutoMapper.Mapper.Instance;
     _personServiceFactory = new PersonServiceFactory();
     _reviewServiceFactory = new WishListReviewServiceFactory();
     _random = new Random();
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of ReviewCommittee
 /// </summary>
 /// <param name="actorService">The Microsoft.ServiceFabric.Actors.Runtime.ActorService that will host this actor instance.</param>
 /// <param name="actorId">The Microsoft.ServiceFabric.Actors.ActorId for this actor instance.</param>
 public ReviewCommittee(ActorService actorService, ActorId actorId)
     : base(actorService, actorId)
 {
     _reviewServiceFactory = new WishListReviewServiceFactory();
 }