Пример #1
0
 public DeleteSectorService(
     IStockWalletDbContext context,
     SectorValidator entityValidator,
     DeleteSectorSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Пример #2
0
 public PatchGradeService(
     IStockWalletDbContext context,
     GradeValidator entityValidator,
     PatchGradeSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Пример #3
0
 public PostPriceService(
     IStockWalletDbContext context,
     PriceValidator entityValidator,
     PostPriceSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
 public PostWalletCommandHandler(
     IStockWalletDbContext context,
     IPostWalletService postService
     )
 {
     Context     = context;
     PostService = postService;
 }
 public PutWalletService(
     IStockWalletDbContext context,
     WalletValidator entityValidator,
     PutWalletSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Пример #6
0
 public GetSubSectorByIDQueryHandler(IStockWalletDbContext context)
 {
     Context = context;
 }
Пример #7
0
 public GetStocksByFilterQueryHandler(IStockWalletDbContext context)
 {
     Context = context;
 }
 public GetGradeByIDQueryHandler(IStockWalletDbContext context)
 {
     Context = context;
 }
 public GetOrderByIDQueryHandler(IStockWalletDbContext context)
 {
     Context = context;
 }