public AccountService(
     UserManager <MyIdentityUser> userManager,
     SignInManager <MyIdentityUser> signInManager,
     GroupJoinDBContext context
     )
 {
     this.userManager   = userManager;
     this.signInManager = signInManager;
     this.context       = context;
 }
 public StoresService(GroupJoinDBContext context)
 {
     this.context = context;
 }
 public RatingService(GroupJoinDBContext context)
 {
     this.context = context;
 }
 public ProductService(GroupJoinDBContext context)
 {
     this.context = context;
 }