public AccountRepository(YourEpicProjectTwoDatabaseContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public SubscriptionRepository(YourEpicProjectTwoDatabaseContext context)
 {
     _context = context;
 }