예제 #1
0
 public GetContactDetailQuery(IContacDbContext database, IMapper mapper) : base(mapper)
 {
     _contactDbContext = database;
 }
예제 #2
0
 public GetAllContactsByStateQuery(IContacDbContext contactDbContext, IMapper mapper) : base(mapper)
 {
     _contactDbContext = contactDbContext;
 }
예제 #3
0
 public CreateContactCommand(IContacDbContext contactDbContext, IMapper mapper)
 {
     _contactDbContext = contactDbContext;
     _mapper           = mapper;
 }
예제 #4
0
 public GetContactByPhoneNumberQuery(IContacDbContext contactDbContext, IMapper mapper) : base(mapper)
 {
     _contactDbContext = contactDbContext;
 }
예제 #5
0
 public DeleteContactCommand(IContacDbContext contactDbContext)
 {
     _contactDbContext = contactDbContext;
 }
예제 #6
0
 public GetContactByEmailQuery(IContacDbContext contactDbContext, IMapper mapper) : base(mapper)
 {
     _contactDbContext = contactDbContext;
 }