You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
583 B

2 years ago
  1. using Microsoft.AspNetCore.Authorization;
  2. using Microsoft.AspNetCore.Mvc;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using Volo.Abp.Application.Services;
  9. namespace Shentun.Peis.AppointPatientRegisters
  10. {
  11. [ApiExplorerSettings(GroupName = "Work")]
  12. [Authorize]
  13. public class AppointPatientRegisterAppService : ApplicationService
  14. {
  15. //public async Task<List<AppointPatientRegisterDto>> GetListByIdNoOrMobilePhoneAsync(AppointPatientRegisterInputDto input)
  16. //{
  17. //}
  18. }
  19. }