赞
踩
public class PersonAppService { private IPersonRepository _personRepository; public PersonAppService(IPersonRepository personRepository) { _personRepository = personRepository; } public void CreatePerson(string name, int age) { var person = new Person { Name = name, Age = age
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。