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> GetDataByOrderItemId(int id); //Task UnLockStoreByOrderItemId(int id); Task LockStore(BookStoreAddsDto input); Task UnLockItem(int id); Task CheckExistLockStore(int id); Task CheckExistLockingStore(int id); } }