Guest User

Untitled

a guest
Jan 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public class CustomerService
  2. {
  3. private ICustomerRepository _customerRepository;
  4.  
  5. public CustomerService(ICustomerRepository customerRepository)
  6. {
  7. _customerRepository = customerRepository;
  8. }
  9. }
Add Comment
Please, Sign In to add comment