基础服务api
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

15 líneas
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. }