Exemplo n.º 1
0
 public Editions AddEdition(Editions editionToBeAdded)
 {
     if (IsUniqueEdition(editionToBeAdded.Name))
     {
         return(editionRepository.AddEdition(editionToBeAdded));
     }
     else
     {
         return(null);
     }
 }