Esempio n. 1
0
 public GetProductsFileQueryHandler(IProductsCleanArchDbContext context, ICsvFileBuilder fileBuilder, IMapper mapper, IDateTime dateTime)
 {
     _context     = context;
     _fileBuilder = fileBuilder;
     _mapper      = mapper;
     _dateTime    = dateTime;
 }
 public DeleteProductHandler(IProductsCleanArchDbContext context)
 {
     _context = context;
 }
Esempio n. 3
0
 public GetUsersCommandHandler(IProductsCleanArchDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public SeedSampleDataCommandHandler(IProductsCleanArchDbContext context, IUserManager userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
 public CreateProductCommandHandler(IProductsCleanArchDbContext context)
 {
     _context = context;
 }
 public DeleteUserCommandHandler(IProductsCleanArchDbContext context)
 {
     _context = context;
 }
 public ProductsListQueryHandler(IProductsCleanArchDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }