Пример #1
0
 public void SetSociete(Societe societe)
 {
     if (societe == null)
     {
         throw new ArgumentNullException("societe");
     }
     Societe = _societeRepository.Get(societe.Id);
 }
Пример #2
0
 public IEnumerable <Societe> Get()
 {
     return(_repos.Get().Select(a => a.ToAPI()));
 }