public ResourceTypeViewModelService(INexudusService nexudusService,
                                     IAsyncRepository <ResourceType> resourceTypeRepository)
 {
     _nexudusService         = nexudusService;
     _resourceTypeRepository = resourceTypeRepository;
 }
 public BusinessViewModelService(INexudusService nexudusService,
                                 IAsyncRepository <Business> businessRepository)
 {
     _nexudusService     = nexudusService;
     _businessRepository = businessRepository;
 }
 public ItemService(INexudusService nexudusService)
 {
     _nexudusService = nexudusService;
 }
 public ProductViewModelService(INexudusService nexudusService,
                                IAsyncRepository <Product> productRepository)
 {
     _nexudusService    = nexudusService;
     _productRepository = productRepository;
 }
 public PassViewModelService(INexudusService nexudusService,
                             IAsyncRepository <Pass> passRepository)
 {
     _nexudusService = nexudusService;
     _passRepository = passRepository;
 }
示例#6
0
 public PlanViewModelService(INexudusService nexudusService,
                             IAsyncRepository <Plan> planRepository)
 {
     _nexudusService = nexudusService;
     _planRepository = planRepository;
 }
 public FinancialAccountViewModelService(INexudusService nexudusService,
                                         IAsyncRepository <FinancialAccount> financialAccountRepository)
 {
     _nexudusService             = nexudusService;
     _financialAccountRepository = financialAccountRepository;
 }