摘要: 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.... 阅读全文
posted @ 2014-01-02 21:17 哈哈2222 阅读(312) 评论(0) 推荐(1) 编辑