Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public class ProductGrain : Grain, IProductGrain
  2. {
  3. private IProductRepository repo;
  4.  
  5. public ProductGrain(IProductRepository repo)
  6. {
  7. this.repo = repo;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement