IEntrepotContact.cs 439 B

123456789101112131415
  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. Contact GetConseillerGeneralSuppleantByRNE(string codeRNE);
  13. }
  14. }