基础服务api
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

15 linhas
315 B

  1. using BPA.SAAS.Manage.Application.Org.Dtos.Role;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Application.Org.Interface
  8. {
  9. public interface IRoleService
  10. {
  11. Task<bool> Add(RoleDtoInput input);
  12. }
  13. }