Esempio n. 1
0
 public ParameterApplicationService(
     IUpdateModificationHashQuery modifyHashQuery,
     IModificationHashQuery modificationHashQuery)
 {
     _updateModificationHashQuery = modifyHashQuery;
     _modificationHashQuery       = modificationHashQuery;
 }
Esempio n. 2
0
 public AdminCommandApplicationService(IUpsertPartnerCommand upsertPartnerCommand,
                                       IUpsertBranchCommand upsertBranchCommand, IUpsertCategoryCommand upsertCategoryCommand,
                                       IDeleteBranchCommand deleteBranchCommand, IDeletePartnerCommand deletePartnerCommand,
                                       IDeleteCategoryCommand deleteCategoryCommand, IUpdateModificationHashQuery updateModificationHashQuery)
 {
     _upsertPartnerCommand        = upsertPartnerCommand;
     _upsertBranchCommand         = upsertBranchCommand;
     _upsertCategoryCommand       = upsertCategoryCommand;
     _deleteBranchCommand         = deleteBranchCommand;
     _deletePartnerCommand        = deletePartnerCommand;
     _deleteCategoryCommand       = deleteCategoryCommand;
     _updateModificationHashQuery = updateModificationHashQuery;
 }