IOrderBookStoreAppService.cs 656 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Abp.Application.Services;
  7. using Abp.Auditing;
  8. using Abp.Authorization;
  9. using ShwasherSys.Order.Dto.OrderBookStore;
  10. namespace ShwasherSys.Order
  11. {
  12. public interface IOrderBookStoreAppService: IApplicationService
  13. {
  14. Task<List<OrderBookStore>> GetDataByOrderItemId(int id);
  15. //Task UnLockStoreByOrderItemId(int id);
  16. Task LockStore(BookStoreAddsDto input);
  17. Task UnLockItem(int id);
  18. Task<Boolean> CheckExistLockStore(int id);
  19. Task<bool> CheckExistLockingStore(int id);
  20. }
  21. }