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