Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. //common variables used accross all functionalities
  2. var persons = personsRepo.GetPersons(filterParameters);
  3. var cases = casesRepo.GetCases();
  4.  
  5. //cases are merged here to update the first functionality,
  6. //the variable is shared between the 2 functionalities and so the other one bellow it is also changed
  7. cases = MergeRelatedCases(cases);
  8.  
  9. //here goes functionality block1 for first functionality should be bellow
  10. //it uses the same variables declared and populated above as the functionality bellow
  11.  
  12.  
  13. //here goes functionality block2 for the second functionality which also uses the variables declared above
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement