Guest User

Untitled

a guest
Oct 23rd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class PurchaseOrder
  2. {
  3. ...
  4. private IDiscountService _discountService;
  5. ...
  6. public PurchaseOrder(string title, IDiscountService discountService, double value)
  7. {
  8. Title = title;
  9. _discountService = discountService;
  10. Value = value;
  11. }
  12. }
Add Comment
Please, Sign In to add comment