| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Abp.Application.Services;
- using Abp.Auditing;
- using Abp.Authorization;
- using ShwasherSys.Order.Dto.OrderBookStore;
- namespace ShwasherSys.Order
- {
- public interface IOrderBookStoreAppService: IApplicationService
- {
- Task<List<OrderBookStore>> GetDataByOrderItemId(int id);
- //Task UnLockStoreByOrderItemId(int id);
- Task LockStore(BookStoreAddsDto input);
- Task UnLockItem(int id);
- Task<Boolean> CheckExistLockStore(int id);
- Task<bool> CheckExistLockingStore(int id);
- }
- }
|