示例#1
0
 public Driver(DbContextAuthor context)
 {
     _context = context;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Management"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="mapper">The mapper.</param>
 public Management(DbContextAuthor context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
示例#3
0
 public Driver(DbContextAuthor context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
示例#4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Management"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 public Management(DbContextAuthor context)
 {
     _context = context;
 }