Ejemplo n.º 1
0
 public DeleteSectorService(
     IStockWalletDbContext context,
     SectorValidator entityValidator,
     DeleteSectorSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Ejemplo n.º 2
0
 public PatchGradeService(
     IStockWalletDbContext context,
     GradeValidator entityValidator,
     PatchGradeSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 6
0
 public GetSubSectorByIDQueryHandler(IStockWalletDbContext context)
 {
     Context = context;
 }
Ejemplo n.º 7
0
 public GetStocksByFilterQueryHandler(IStockWalletDbContext context)
 {
     Context = context;
 }
 public GetGradeByIDQueryHandler(IStockWalletDbContext context)
 {
     Context = context;
 }
 public GetOrderByIDQueryHandler(IStockWalletDbContext context)
 {
     Context = context;
 }