Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/IServices/ITeamMemberAppService.cs 571 Bytes
dbc9750f   李曜臣   成员模块实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  using FoodLabeling.Application.Contracts.Dtos.Common;
  using FoodLabeling.Application.Contracts.Dtos.TeamMember;
  
  namespace FoodLabeling.Application.Contracts.IServices;
  
  public interface ITeamMemberAppService
  {
      Task<PagedResultWithPageDto<TeamMemberGetListOutputDto>> GetListAsync(TeamMemberGetListInputVo input);
  
      Task<TeamMemberGetOutputDto> GetAsync(Guid id);
  
      Task<TeamMemberGetOutputDto> CreateAsync(TeamMemberCreateInputVo input);
  
      Task<TeamMemberGetOutputDto> UpdateAsync(Guid id, TeamMemberUpdateInputVo input);
  
      Task DeleteAsync(Guid id);
  }