public StoreOwnerController(IStoreOwnerAppService service)
 {
     _service = service;
 }
 public EditModalModel(IStoreOwnerAppService storeOwnerAppService)
 {
     _storeOwnerAppService = storeOwnerAppService;
 }
示例#3
0
 public CreateModalModel(IStoreOwnerAppService storeOwnerAppService)
 {
     _storeOwnerAppService = storeOwnerAppService;
 }
示例#4
0
 public IndexModel(IStoreAppService storeAppService,
                   IStoreOwnerAppService storeOwnerAppService)
 {
     _storeAppService      = storeAppService;
     _storeOwnerAppService = storeOwnerAppService;
 }