public CreateEmptyListHandler(SharedListContext context, INowProvider nowProvider,
                               IRandomisedWordProvider randomisedWordProvider, IConfiguration configuration)
 {
     _context                = context;
     _nowProvider            = nowProvider;
     _randomisedWordProvider = randomisedWordProvider;
     _configuration          = configuration;
 }
示例#2
0
 public UpdateListHandler(SharedListContext context, INowProvider nowProvider, IConfiguration configuration)
 {
     _context       = context;
     _nowProvider   = nowProvider;
     _configuration = configuration;
 }
示例#3
0
 public DeleteListHandler(SharedListContext context)
 {
     _context = context;
 }
 public GetListPreviewsHandler(SharedListContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
示例#5
0
 public GetListHandler(SharedListContext context, IMapper mapper, IConfiguration configuration)
 {
     _context       = context;
     _mapper        = mapper;
     _configuration = configuration;
 }