Пример #1
0
 /// <summary>
 /// Function to create a new Person
 /// </summary>
 /// <returns>int id of Person created</returns>
 public int Create(NewPerson entity)
 {
     return(Repository.Create(entity.ToDal()));
 }