public Handler(ContextAuthor _context)
 {
     context = _context;
 }
Example #2
0
 public Handler(ContextAuthor context)
 {
     _context = context;
 }
Example #3
0
 public Handler(ContextAuthor context,
                IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #4
0
 public Manejador(ContextAuthor context)
 {
     _context = context;
 }
 public Manejador(ContextAuthor context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #6
0
 public Handler(ContextAuthor _context, IMapper _mapper)
 {
     context = _context;
     mapper  = _mapper;
 }
Example #7
0
 public AuthorBookDeleteHandler(ContextAuthor context)
 {
     _context = context;
 }