摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; namespace Exam.BLL { /**/... 阅读全文
摘要:
Service Layer by Randy Stafford Defines an application's boundary with a layer of services that establishes a set of available operations and coordinates the application's response in each operation. ... 阅读全文
摘要:
Table Module A single instance that handles the business logic for all rows in a database table or view. For a full description see P of EAA page 125 One of the key messages of object orientation... 阅读全文
摘要:
Domain Model An object model of the domain that incorporates both behavior and data. For a full description see P of EAA page 116 At its worst business logic can be very complex. Rules and logic ... 阅读全文
摘要:
领域逻辑模式(Domain Logic Patterns) 1、Transaction Script(事务脚本) Organizes business logic by procedures where each procedure handles a single request from the presentation. For a full description see P of EAA... 阅读全文
摘要:
随着.NET 2.0的发布,将会使得使用ASP.NET 2.0来构建的Web应用越来越容易。使用ASP.NET 2.0和SQL Server 2005,将会比ASP.NET 1.1更方便地构建多层体系架构的web应用。本文,将使用ASP.NET 2.0和SQL Server 2005 (.net使用Visual Studio 2005 beta 2,SQL Server 2005使用april c... 阅读全文
摘要:
A Laboratory For Teaching Object-Oriented Thinking A Laboratory For Teaching Object-Oriented Thinking Kent Beck, Apple Computer, Inc. Ward Cunningham, Wyatt Software Services, Inc. From th... 阅读全文
摘要:
条款一:使用属性代替可访问的数据成员 1、在C#中属性(property)在访问时候看起来是数据成员,但却是用方法实现的!可以对set访问器做参数检查!可以对属性访问添加多线程支持! public class Person { private string name; public string Name { get { ... 阅读全文
摘要:
using System; using System.Threading; using System.Runtime.Remoting.Proxies; using System.Runtime.Remoting.Messaging; using System.Runtime.Remoting; namespace ConsoleApplication1 { public interfac... 阅读全文