예제 #1
0
 public DeleteSampleCommandHandler(
     IStockWalletDbContext context,
     IDeleteSampleService deleteService)
 {
     Context       = context;
     DeleteService = deleteService;
 }
 public DeleteSampleCommandHandler(
     IDefaultDbContext context,
     IDeleteSampleService deleteService)
 {
     Context       = context;
     DeleteService = deleteService;
 }
예제 #3
0
 public DeleteSampleCommandHandler(
     IStringLocalizer <Messages> messagesLocalizer,
     IStringLocalizer <EntitiesDefault> entitiesDefaultLocalizer,
     IDefaultDbContext context,
     IDeleteSampleService deleteService)
 {
     MessagesLocalizer        = messagesLocalizer;
     EntitiesDefaultLocalizer = entitiesDefaultLocalizer;
     Context       = context;
     DeleteService = deleteService;
 }