Пример #1
0
        public void SetUp()
        {
            var restClient = new RestClient(Environment.GetEnvironmentVariable("MP_REST_API_ENDPOINT"));

            _fixture = new MinistryPlatformRestRepository(restClient);
        }
Пример #2
0
 public MpService()
 {
     mpRest = new MinistryPlatformRestRepository(ministryPlatformRestClient, authenticationRestClient);
 }
Пример #3
0
 public void SetUp()
 {
     _restClient = new Mock <IRestClient>();
     _fixture    = new MinistryPlatformRestRepository(_restClient.Object);
 }