IEntrepotContact.cs 371 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CG67.FicheCollege.Domaine;
  5. namespace CG67.FicheCollege.Interface
  6. {
  7. public interface IEntrepotContact
  8. {
  9. IList<Contact> GetAllContactByCodeRNE(string codeRNE);
  10. IList<Contact> GetByCodeRNE(string codeRNE);
  11. Contact GetConseillerGeneralByRNE(string codeRNE);
  12. }
  13. }