public ServiceRequestPresenter(IServiceRequestStore serviceRequestStore)
 {
     _serviceRequestStore = serviceRequestStore;
 }
예제 #2
0
 public CommService()
 {
     requestStore = new ServiceRequestStore();
     responseStore = new ServiceResponseStore();
     commLogic = new CommLogic(Global.GmailClient, Global.DoodleClient, Global.TwilioClient, this.NewResponseCallback);
 }