Guest User

Untitled

a guest
Nov 20th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. namespace ConsoleApplication3
  2. {
  3. class Program
  4. {
  5. static void Main()
  6. {
  7. using (var ac = new AccountContext())
  8. {
  9. Guid g = Guid.NewGuid();
  10. var da = new AccountDA(ac);
  11. var person = da.GetPerson(g);
  12. }
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment