| | |
| | | package com.oying.modules.pc.store.service.impl; |
| | | |
| | | import com.oying.modules.pc.store.domain.Store; |
| | | import com.oying.modules.pc.store.domain.dto.StoreCreateRequest; |
| | | import com.oying.modules.pc.store.service.StoreCreateService; |
| | | import com.oying.modules.pc.store.service.StoreService; |
| | |
| | | private final StoreService storeService; |
| | | |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public void create(StoreCreateRequest request) { |
| | | storeService.create(request); |
| | | public Store create(StoreCreateRequest request) { |
| | | return storeService.create(request); |
| | | } |
| | | } |