Example #1
0
        public void Setup()
        {
            _jsonHelper             = Substitute.For <JsonHelper>();
            _actionPlanPatchService = Substitute.For <ActionPlanPatchService>();
            _actionPlanPatch        = Substitute.For <ActionPlanPatch>();

            _json = JsonConvert.SerializeObject(_actionPlanPatch);
        }
Example #2
0
 public PatchActionPlanHttpTriggerService(IActionPlanPatchService actionPlanPatchService, IDocumentDBProvider documentDbProvider)
 {
     _actionPlanPatchService = actionPlanPatchService;
     _documentDbProvider     = documentDbProvider;
 }