我对petshop4的简单理解![通俗易懂]

我对petshop4的简单理解![通俗易懂]petshop4充分体现了面向接口编程的思想,就是给你一个接口你别管我是怎么实现的,你只管用别说其他的。namespacePetShop.BLL{   ///   ///Abusinesscomponenttomanageproducts   ///   publicclassProduct{       //Getaninstan

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

petshop4充分体现了面向接口编程的思想,就是给你一个接口你别管我是怎么实现的,你只管用别说其他的。

namespace PetShop.BLL {

    /// <summary>     /// A business component to manage products     /// </summary>     public class Product {

        // Get an instance of the Product DAL using the DALFactory         // Making this static will cache the DAL instance after the initial load         private static readonly IProduct dal = PetShop.DALFactory.DataAccess.CreateProduct();

在bll层,这里使用创建Produce的接口,你只管调用他的方法。

namespace PetShop.IDAL{    /// <summary>  /// Interface for the Product DAL  /// </summary>  public interface IProduct{     /// <summary>   /// Method to search products by category name   /// </summary>   /// <param name=”category”>Name of the category to search by</param>         /// <returns>Interface to Model Collection Generic of search results</returns>   IList<ProductInfo> GetProductsByCategory(string category); 

  /// <summary>   /// Method to search products by a set of keyword   /// </summary>   /// <param name=”keywords”>An array of keywords to search by</param>   /// <returns>Interface to Model Collection Generic of search results</returns>         IList<ProductInfo> GetProductsBySearch(string[] keywords);

  /// <summary>   /// Query for a product   /// </summary>   /// <param name=”productId”>Product Id</param>   /// <returns>Interface to Model ProductInfo for requested product</returns>   ProductInfo GetProduct(string productId);  }

这里是定义了Product接口和他的虚方法。

namespace PetShop.SQLServerDAL {

    public class Product : IProduct {

        //Static constants         private const string SQL_SELECT_PRODUCTS_BY_CATEGORY = “SELECT Product.ProductId, Product.Name, Product.Descn, Product.Image, Product.CategoryId FROM Product WHERE Product.CategoryId = @Category”;         private const string SQL_SELECT_PRODUCTS_BY_SEARCH1 = “SELECT ProductId, Name, Descn, Product.Image, Product.CategoryId FROM Product WHERE ((“;         private const string SQL_SELECT_PRODUCTS_BY_SEARCH2 = “LOWER(Name) LIKE ‘%’ + {0} + ‘%’ OR LOWER(CategoryId) LIKE ‘%’ + {0} + ‘%'”;         private const string SQL_SELECT_PRODUCTS_BY_SEARCH3 = “) OR (“;         private const string SQL_SELECT_PRODUCTS_BY_SEARCH4 = “))”;         private const string SQL_SELECT_PRODUCT = “SELECT Product.ProductId, Product.Name, Product.Descn, Product.Image, Product.CategoryId FROM Product WHERE Product.ProductId  = @ProductId”;         private const string PARM_CATEGORY = “@Category”;         private const string PARM_KEYWORD = “@Keyword”;         private const string PARM_PRODUCTID = “@ProductId”;

        /// <summary>         /// Query for products by category         /// </summary>         /// <param name=”category”>category name</param>          /// <returns>A Generic List of ProductInfo</returns>         public IList<ProductInfo> GetProductsByCategory(string category) {

            IList<ProductInfo> productsByCategory = new List<ProductInfo>();

这里是实现Product接口的类,

namespace PetShop.DALFactory {

    /// <summary>     /// This class is implemented following the Abstract Factory pattern to create the DAL implementation     /// specified from the configuration file     /// </summary>     public sealed class DataAccess {

        // Look up the DAL implementation we should be using         private static readonly string path = ConfigurationManager.AppSettings[“WebDAL”];         private static readonly string orderPath = ConfigurationManager.AppSettings[“OrdersDAL”];                 private DataAccess() { }

        public static PetShop.IDAL.ICategory CreateCategory() {             string className = path + “.Category”;             return (PetShop.IDAL.ICategory)Assembly.Load(path).CreateInstance(className);         }

这里是利用工厂模式来映射你需要你想创建哪一个。

后面还有一些消息队列MSMQMessage利用cache缓存以后达到异步处理购物车里订单的功能!

刚开始看应先从先从Product入口,关于Product的一些操作串联起来看一遍!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/183808.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • java获取当前时间到毫秒_java获取当前时间毫秒

    java获取当前时间到毫秒_java获取当前时间毫秒()为获取当前系统时间,也可使用当前时间戳获取时间戳三种方法执行效率比较:importjava.util.Calendar;importjava.util.Date;publicclassTimeTest{……java获得系统时间转换成字符串关键字:java有时候经常用到JAVA时间转换如字符串转换成时间,时间转换成字符串1.long字符串转换成…

  • 跟我一起写 Makefile(一)[通俗易懂]

    跟我一起写 Makefile(一)[通俗易懂]跟我一起写Makefile 陈皓概述——什么是makefile?或许很多Winodws的程序员都不知道这个东西,因为那些Windows的IDE都为你做了这个工作,但我觉得要作一个好的和professional的程序员,makefile还是要懂。这就好像现在有这么多的HTML的编辑器,但如果你想成为一个专业人士,你还是要了解HTML的标识的含义。特别在Unix下的软件编译,你就不能不自

  • webpack-dev-server简记

    webpack-dev-server简记

  • vue中引入高德地图并多点标注

    vue中引入高德地图并多点标注vue中引入高德地图并多点标记步骤:通过vue的方法引入地图初始化地图,设置宽和高信息窗口实例遍历生成多个标记点首先在项目的public下的index.html中引入地图<linkrel=”stylesheet”href=”https://cache.amap.com/lbs/static/main1119.css”/><scriptsrc=”https://webapi.amap.com/maps?v=1.4.15&key=申请的key”>&l

  • LaTeX 中插入数学公式

    LaTeX 中插入数学公式转载自:一、常用的数学符号1、小写希腊字母下面的都要上面这个案例一样才有用。为了方便书写,以下两边都只写了一个$,而实际上两边要写$$才有用,如:对应α\alphaα2、大写希腊字母 大写希腊字母只需要将小写希腊字母的第一个英文字母大写即可。但是需要注意的是,有些小写希腊字母的大写可以直接通过键盘输入,也就是说和英文大写是相同的。3、运算符 对于加减除,对应键盘上便…

  • mysql导入excel表异常_mysql导入excel表格数据时出错的解决

    mysql导入excel表异常_mysql导入excel表格数据时出错的解决NavicatforMySQL导入数据时报错1:导入的是Excel2007表格格式的数据。2:报错以后数据加进去了。(选择了错误继续执行)3:这个错误对我的数据有影响吗?4:造成这个错误的原因是什么5:这个是日志文件[2012-07-1113:57:48][Msg]Importstart[2012-07-1113:57:48][Msg]Importtype-Excel20…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号