Example #1
0
 public PutSchoolCommandHandler(
     IDefaultDbContext context,
     IPutSchoolService putService)
 {
     Context    = context;
     PutService = putService;
 }
Example #2
0
 public PutCategoryCommandHandler(
     IDefaultDbContext context,
     IPutCategoryService putService)
 {
     Context    = context;
     PutService = putService;
 }
 public PutClassCommandHandler(
     IDefaultDbContext context,
     IPutClassService putService)
 {
     Context    = context;
     PutService = putService;
 }
 public DeleteCategoryCommandHandler(
     IDefaultDbContext context,
     IDeleteCategoryService deleteService)
 {
     Context       = context;
     DeleteService = deleteService;
 }
Example #5
0
 public PutImageCommandHandler(
     IDefaultDbContext context,
     IPutImageService putService)
 {
     Context    = context;
     PutService = putService;
 }
 public DeleteOrderedProductCommandHandler(
     IDefaultDbContext context,
     IDeleteOrderedProductService deleteService)
 {
     Context       = context;
     DeleteService = deleteService;
 }
 public PutCustomerCommandHandler(
     IDefaultDbContext context,
     IPutCustomerService putService)
 {
     Context    = context;
     PutService = putService;
 }
 public PutOrderedProductCommandHandler(
     IDefaultDbContext context,
     IPutOrderedProductService putService)
 {
     Context    = context;
     PutService = putService;
 }
 public PatchCategoryCommandHandler(
     IDefaultDbContext context,
     IPatchCategoryService patchService)
 {
     Context      = context;
     PatchService = patchService;
 }
 public PatchCustomerCommandHandler(
     IDefaultDbContext context,
     IPatchCustomerService patchService)
 {
     Context      = context;
     PatchService = patchService;
 }
Example #11
0
 public PatchOrderedProductCommandHandler(
     IDefaultDbContext context,
     IPatchOrderedProductService patchService)
 {
     Context      = context;
     PatchService = patchService;
 }
Example #12
0
 public GetSamplesByFilterQueryHandler(
     IStringLocalizer <Messages> stringLocalizer,
     IDefaultDbContext context)
 {
     StringLocalizer = stringLocalizer;
     Context         = context;
 }
 public DeleteSampleCommandHandler(
     IDefaultDbContext context,
     IDeleteSampleService deleteService)
 {
     Context       = context;
     DeleteService = deleteService;
 }
 public DeleteCustomerCommandHandler(
     IDefaultDbContext context,
     IDeleteCustomerService deleteService)
 {
     Context       = context;
     DeleteService = deleteService;
 }
 public PatchSchoolCommandHandler(
     IDefaultDbContext context,
     IPatchSchoolService patchService)
 {
     Context      = context;
     PatchService = patchService;
 }
Example #16
0
 public PatchSampleCommandHandler(
     IDefaultDbContext context,
     IPatchSampleService patchService)
 {
     Context      = context;
     PatchService = patchService;
 }
Example #17
0
 public PatchClassCommandHandler(
     IDefaultDbContext context,
     IPatchClassService patchService)
 {
     Context      = context;
     PatchService = patchService;
 }
 public DeleteOrderService(
     IDefaultDbContext context,
     OrderValidator entityValidator,
     DeleteOrderSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
 public PostCategoryCommandHandler(
     IDefaultDbContext context,
     IPostCategoryService postService
     )
 {
     Context     = context;
     PostService = postService;
 }
 public PostProductCommandHandler(
     IDefaultDbContext context,
     IPostProductService postService
     )
 {
     Context     = context;
     PostService = postService;
 }
 public PatchCustomerService(
     IDefaultDbContext context,
     CustomerValidator entityValidator,
     PatchCustomerSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Example #22
0
 public PostImageCommandHandler(
     IDefaultDbContext context,
     IPostImageService postService
     )
 {
     Context     = context;
     PostService = postService;
 }
Example #23
0
 public PostClassService(
     IDefaultDbContext context,
     ClassValidator entityValidator,
     PostClassSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
 public DeleteCategoryService(
     IDefaultDbContext context,
     CategoryValidator entityValidator,
     DeleteCategorySpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
 public PutOrderedProductService(
     IDefaultDbContext context,
     OrderedProductValidator entityValidator,
     PutOrderedProductSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Example #26
0
 public PostOrderCommandHandler(
     IDefaultDbContext context,
     IPostOrderService postService
     )
 {
     Context     = context;
     PostService = postService;
 }
 public DeleteProductService(
     IDefaultDbContext context,
     ProductValidator entityValidator,
     DeleteProductSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Example #28
0
 public PutImageService(
     IDefaultDbContext context,
     ImageValidator entityValidator,
     PutImageSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
Example #29
0
 public PostSampleService(
     IDefaultDbContext context,
     SampleValidator entityValidator,
     PostSampleSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }
 public PutSchoolService(
     IDefaultDbContext context,
     SchoolValidator entityValidator,
     PutSchoolSpecificationsValidator domainValidator
     ) : base(entityValidator, domainValidator)
 {
     Context = context;
 }