Esempio n. 1
0
        public void Setup()
        {
            _addressPatchService = Substitute.For <AddressPatchService>();
            _addressPatch        = Substitute.For <AddressPatch>();

            _json = JsonConvert.SerializeObject(_addressPatch);
        }
Esempio n. 2
0
 public PatchAddressHttpTriggerService(IDocumentDBProvider documentDbProvider, IAddressPatchService addressPatchService)
 {
     _documentDbProvider  = documentDbProvider;
     _addressPatchService = addressPatchService;
 }