ISceneFlowApplicationService.cs 675 B

1234567891011121314151617181920212223
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services.Dto;
  3. using IwbZero.AppServiceBase;
  4. using WePlatform.WeLib.Package.Dto;
  5. using WePlatform.WeLib.SceneFlow.Dto;
  6. namespace WePlatform.WeLib.SceneFlow
  7. {
  8. public interface ISceneFlowAppService : IIwbZeroAsyncCrudAppService<SceneFlowDto, string, IwbPagedRequestDto, SceneFlowCreateDto, SceneFlowUpdateDto >
  9. {
  10. Task Copy(EntityDto<string> input);
  11. //sTask Solidify(SolidifyDto input);
  12. #region Get
  13. Task<SceneFlowInfo> GetEntity(EntityDto<string> input);
  14. Task<SceneFlowInfo> GetEntityById(string id);
  15. Task<SceneFlowInfo> GetEntityByNo(string no);
  16. #endregion
  17. }
  18. }