01 2014 档案
摘要:namespace Tuzi.Models.IService{ public interface IPersonService { string say(string words); } namespace Tuzi.Models.Service{ public class PersonService:IPersonService { public string say(string words) { return words; } }} namespace Tuzi....
阅读全文