| 1234567891011121314151617181920212223 |
- using System.Threading.Tasks;
- using Abp.Application.Services.Dto;
- using IwbZero.AppServiceBase;
- using WePlatform.WeLib.Package.Dto;
- using WePlatform.WeLib.SceneFlow.Dto;
- namespace WePlatform.WeLib.SceneFlow
- {
- public interface ISceneFlowAppService : IIwbZeroAsyncCrudAppService<SceneFlowDto, string, IwbPagedRequestDto, SceneFlowCreateDto, SceneFlowUpdateDto >
- {
- Task Copy(EntityDto<string> input);
- //sTask Solidify(SolidifyDto input);
- #region Get
- Task<SceneFlowInfo> GetEntity(EntityDto<string> input);
- Task<SceneFlowInfo> GetEntityById(string id);
- Task<SceneFlowInfo> GetEntityByNo(string no);
-
- #endregion
- }
- }
|