java怎么拦截某个对象
274
2022-09-05
DDD领域模型企业级系统Linq的CRUD(四)
建造一个Product Module类:
ProductDBContextDataContext dbcontext = new ProductDBContextDataContext(); public List
静态页面:
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="LinqToSQLWeb._Default" %>
后台类:
Product.Domain.Products products = new Product.Domain.Products(); protected void Page_Load(object sender, EventArgs e) { } protected void Button3_Click(object sender, EventArgs e) { TextBox1.Text = "1"; GetProductsBinding(2); } protected void Button4_Click(object sender, EventArgs e) { if (int.Parse(TextBox1.Text) > 0) { TextBox1.Text = (int.Parse(TextBox1.Text) - 1).ToString(); } GetProductsBinding(2); } protected void Button5_Click(object sender, EventArgs e) { TextBox1.Text = (int.Parse(TextBox1.Text) + 1).ToString(); GetProductsBinding(2); } private void GetProductsBinding(int count) { List
EF的实例:
ProductSystemModelContainer productdbcontext = new ProductSystemModelContainer(); public List
前端代码:
后台代码:
LINQEFService efservice = new LINQEFService(); protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Bind(); } } private void Bind() { var result = efservice.GetAllPC(int.Parse(TextBox1.Text), 2); GridView1.DataSource = result; GridView1.DataBind(); } protected void Button1_Click(object sender, EventArgs e) { efservice.AddProduct(); Bind(); } protected void Button2_Click(object sender, EventArgs e) { if (int.Parse(TextBox1.Text) > 0) { TextBox1.Text = (int.Parse(TextBox1.Text) - 1).ToString(); Bind(); } } protected void Button3_Click(object sender, EventArgs e) { TextBox1.Text = (int.Parse(TextBox1.Text) + 1).ToString(); Bind(); } protected void Button4_Click(object sender, EventArgs e) { efservice.ModifyProduct(); Bind(); } protected void Button5_Click(object sender, EventArgs e) { efservice.RemoveProduct(); Bind(); }
直接实例化服务端的弊端:
Service Locator体系架构模式:
实例:
定义接口:IPrintService
public interface IPrintService { string Print(string msg); }
子类PrintSerivceNew:
public class PrintSerivceNew:IPrintService { public string Print(string msg) { return "SerivceNew:" + msg; } }
子类:PrintService
public class PrintService : IPrintService { public string Print(string msg) { return "Serivce1:" + msg; } }
服务工厂ServiceFactory
public abstract class ServiceFactory { public object GetService() { return this.DoGetService(); } public abstract object DoGetService(); public abstract Type SerivceType { get; } }
具体实现工厂:PrintServiceFactory
public class PrintServiceFactory:ServiceFactory { public override object DoGetService() { return new PrintSerivceNew(); } public override Type SerivceType { get { return typeof(IPrintService); } } }
具体的业务:
public class ServiceLocator { private Dictionary
调用:
static void Main(string[] args) { ServiceLocator servicelocator = new ServiceLocator(); var objectservice=servicelocator.GetServiceByType(typeof(IPrintService)); Console.WriteLine((objectservice as IPrintService).Print("hello")); Console.ReadLine(); }
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~