Ejemplo n.º 1
0
 public UserRepository(UserManagingContext context)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
 }
Ejemplo n.º 2
0
 public UserAccountQueries(UserManagingContext context, IMapper mapper)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
     this.mapper  = mapper;
 }