public HistoryQueries(IAccountManagementSystemContext context)
 {
     _context = context;
 }
 public UserRepository(IAccountManagementSystemContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }