我对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)


相关推荐

  • No MyBatis mapper was found in ‘[com.supergo]‘ package. Please check your configuration.问题

    No MyBatis mapper was found in ‘[com.supergo]‘ package. Please check your configuration.问题NoMyBatismapperwasfoundin‘[com.supergo]’package.Pleasecheckyourconfiguration.问题第一遍编写程序运行的时候没问题,第二遍的时候遇到了这个问题。使用的tk的开源项目进行mybatis集成,百度了很多解决方案,最终看到一位前辈介绍:doScan()会扫描启动类同级目录下的mapper接口,但是合理的目录结果绝对不允许所有的mapper都在启动类目录下,所以在启动类目录下添加了一个伪mapper,如下:然后再

  • Python图像处理之小波去噪

    Python图像处理之小波去噪在此前的文章中,我们讨论了在Python中利用pywt包提供的API对图像做小波分解的基本方法。小波变换在图像处理中的一个具体应用就是平滑去噪。后续我们还会从原理上讨论如何利用小波变换来设计图像去噪算法。但在此之前,本文将主要演示,利用Python中已有的API进行图像小波去噪的方法及效果

  • github 项目地址

    github 项目地址AutoSize:implementation’me.jessyan:autosize:1.2.1’2021/01/22https://github.com/JessYanCoding/AndroidAutoSize

  • 基于SwipeRefreshLayout的上拉加载控件

    基于SwipeRefreshLayout的上拉加载控件距离上一篇博客,居然已经过了大半年的时间,时间过得真快啊!CSDN最近大改版,各种用户体验也是被无数人吐槽,让人提不起任何写博客的兴趣,不过,该写的博客还是必须得写,话不多话,直接进入正题。现在项目中用列表来展示数据比比皆是,ListView和RecyclerView大家也是耳熟能详。实际项目中,后台肯定的接口肯定都是分页的,那么,分页加载也是自然而然的事,下面基于Google原生的下拉刷新控

  • url的加密解密_url地址加密

    url的加密解密_url地址加密今天做项目构造链接参数的时候,推送到app上的链接点了没办法跳转到对应的界面对比了一下能跳转的链接,原来是url没有加密,就推送过去了在这里把对url加密解密的方法记录一下,方便以后使用publicstaticStringgetURLEncoderString(Stringstr){Stringresult="";if(null==str){…

    2022年10月29日
  • ios 越狱 真机调试

    ios 越狱 真机调试开发环境:Xcode4.5.2ios设备需要越狱并从Cydia安装appsync安装appsync步骤:1、找到安装的cydia,第一次运行将会弹出提示,选择开发者即可2、在工具栏中选择软件源(iphone/itouch选管理),然后点右上角的编辑3、点左上角添加4、输入源:http://yuan.duowan.com/(多玩的源),点添加源,等待添加完成,然后点返回C

发表回复

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

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