IHobbyInfoRepository.cs 155 B

1234567891011
  1. 
  2. namespace YZXYH.Repository.Interface
  3. {
  4. public partial interface IHobbyInfoRepository
  5. {
  6. string GetHobbies();
  7. string GetHobbies(string id);
  8. }
  9. }