Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1.  public Loan Find(Loan loan)
  2.          {
  3.              EventArgs args = new EventArgs();
  4.              return _loanRepository.Find(loan);
  5.              Raise(args);
  6.          }
  7.         public void Raise(EventArgs e)
  8.          {
  9.              if (Updated != null)            
  10.                  Updated(this, e);            
  11.          }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement