Esempio n. 1
0
 public SessionStateGetTests()
 {
     logger = A.Fake <ILogger <EnterYourDetailsController> >();
     fakeSessionStateService = A.Fake <ISessionStateService <SessionDataModel> >();
     fakeMapper               = A.Fake <AutoMapper.IMapper>();
     fakeRoutingService       = A.Fake <IRoutingService>();
     fakeNotifyEmailService   = A.Fake <INotifyEmailService <ContactUsEmailRequestModel> >();
     fakeFamApiRoutingOptions = A.Fake <FamApiRoutingOptions>();
 }
Esempio n. 2
0
 public RoutingService(FamApiRoutingOptions famApiRoutingOptions, IApiDataProcessorService apiDataProcessorService, HttpClient httpClient)
 {
     this.famApiRoutingOptions    = famApiRoutingOptions;
     this.apiDataProcessorService = apiDataProcessorService;
     this.httpClient = httpClient;
 }