Exemplo n.º 1
0
 public ProductCommandHandler(GasmaToolsContext context,
                              IPhotoAccessor photoAccesor,
                              IEntityValidator entityValidator,
                              NotificationContext notification, IMapper mapper)
 {
     _context         = context;
     _photoAccesor    = photoAccesor;
     _entityValidator = entityValidator;
     _notification    = notification;
     _mapper          = mapper;
 }
Exemplo n.º 2
0
 public PersonReadRepository(GasmaToolsContext context) : base(context)
 {
 }
Exemplo n.º 3
0
 public PersonWriteRepository(GasmaToolsContext context) : base(context)
 {
 }
Exemplo n.º 4
0
 public GameWriteRepository(GasmaToolsContext context) : base(context)
 {
 }
Exemplo n.º 5
0
 public UnitOfWork(GasmaToolsContext context)
 {
     this.context = context;
 }
Exemplo n.º 6
0
 public ProductQueryHandler(GasmaToolsContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }