You must Sign In to post a response.
  • Category: ASP.NET

    Convert to N tier architecture

    0


    I want to convert my architecure into N tier architecture.Please find below details. ----------------------- Sql-------------------------------- USE [Practice] GO

    /****** Object: Table [dbo].[Brand] Script Date: 03/02/2019 00:56:50 ******/

    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO

    SET ANSI_PADDING ON
    GO

    CREATE TABLE [dbo].[Brand](
    [Id] [int] IDENTITY(1,1) NOT NULL,
    [BrandName] [varchar](20) NULL,
    [ProductId] [int] NULL,
    CONSTRAINT [PK_Brand] PRIMARY KEY CLUSTERED
    (
    [Id] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]

    GO

    SET ANSI_PADDING OFF
    GO
    ----------------------------------------------------------------------------------------------------

    USE [Practice]
    GO

    /****** Object: Table [dbo].[Product] Script Date: 03/02/2019 00:57:30 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO

    SET ANSI_PADDING ON
    GO

    CREATE TABLE [dbo].[Product](
    [Id] [int] IDENTITY(1,1) NOT NULL,
    [ProductName] [varchar](20) NULL,
    CONSTRAINT [PK_Product] PRIMARY KEY CLUSTERED
    (
    [Id] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]

    GO

    SET ANSI_PADDING OFF
    GO


    --------------------------------------------------------------------------------------------------------------------

    USE [Practice]
    GO

    /****** Object: Table [dbo].[BrandProductAssociation] Script Date: 03/02/2019 00:58:00 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO

    SET ANSI_PADDING ON
    GO

    CREATE TABLE [dbo].[BrandProductAssociation](
    [Id] [int] IDENTITY(1,1) NOT NULL,
    [BrandId] [int] NOT NULL,
    [ProductId] [int] NOT NULL,
    [Price] [int] NOT NULL,
    [Ingrdient] [varchar](10) NULL,
    [UseFor] [varchar](10) NULL
    ) ON [PRIMARY]

    GO

    SET ANSI_PADDING OFF
    GO


    --------------------------------------------------------------------------------------------------------------------
    USE [Practice]
    GO

    /****** Object: StoredProcedure [dbo].[Proc_SelecBrand] Script Date: 03/02/2019 00:58:39 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO



    CREATE Procedure [dbo].[Proc_SelecBrand]
    @ProductId int = null
    as
    begin
    select * from Brand where (productid =@ProductId or @ProductId is null)
    end
    GO


    ----------------------------------------------------------------------------------------------------------------------
    USE [Practice]
    GO

    /****** Object: StoredProcedure [dbo].[Proc_SelecProduct] Script Date: 03/02/2019 00:59:54 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO


    create Procedure [dbo].[Proc_SelecProduct]
    as
    begin
    select * from Product
    end
    GO


    ------------------------------------------------------------------------------------------------------------------------
    USE [Practice]
    GO

    /****** Object: StoredProcedure [dbo].[Proc_InsertBrandProductDetails] Script Date: 03/02/2019 01:00:31 ******/
    SET ANSI_NULLS ON
    GO

    SET QUOTED_IDENTIFIER ON
    GO



    create Procedure [dbo].[Proc_InsertBrandProductDetails]
    @BrandId int,
    @ProductId int,
    @price int,
    @Ingri varchar(10),
    @user varchar(10)
    as
    begin
    Insert into BrandProductAssociation ([BrandId],[ProductId],[Price],[Ingrdient],[UseFor]) values (@BrandId,@ProductId,@price,@Ingri,@user)
    end
    GO
    -----------------------------------------------------------------------
    ------aspx----------------------------------------------------------------

    <%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Default.aspx.cs" Inherits="TestApp._Default" %>

    <asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
    </asp:Content>
    <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>

    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
    <ContentTemplate>

    <table style="width: 300px" cellspacing="4" cellpadding="4">
    <tr>
    <td colspan="2">
    <asp:Label ID="LblMessage" runat="server" ForeColor="Red"></asp:Label>
    </td>
    </tr>
    <tr style="height: 20px">
    <td style="width: 100; background-color: #e5e5e5">
    Product
    </td>
    <td style="width: 200; background-color: #f7f7f7">
    <asp:DropDownList ID="ddlProduct" runat="server" Height="19px" Width="200px" OnSelectedIndexChanged="ddlProduct_SelectedIndexChanged"
    AutoPostBack="true">
    </asp:DropDownList>
    <span style="color: Red">*</span>
    <br />
    <asp:RequiredFieldValidator ID="RFDProduct" runat="server" ErrorMessage="Please Select Product"
    InitialValue="--Select Product--" ControlToValidate="ddlProduct" Display="Dynamic" ForeColor="Red" ></asp:RequiredFieldValidator>
    </td>
    </tr>
    <tr style="height: 20px">
    <td style="width: 100; background-color: #e5e5e5">
    Brand
    </td>
    <td style="width: 200; background-color: #f7f7f7">
    <asp:DropDownList ID="ddlBrand" runat="server" Height="19px" Width="200px">
    </asp:DropDownList>
    <span style="color: Red">*</span>
    <br />
    <asp:RequiredFieldValidator ID="RFDBrand" runat="server" ErrorMessage="Please Select Brand"
    InitialValue="--Select Brand--" ControlToValidate="ddlBrand" Display="Dynamic" ForeColor="Red" ></asp:RequiredFieldValidator>
    </td>
    </tr>

    <tr style="height: 10px">
    <td style="width: 100; background-color: #e5e5e5">
    Price
    </td>
    <td style="width: 200; background-color: #f7f7f7">
    <asp:TextBox ID="txtPrice" runat="server" Width="200px" Height="19px"></asp:TextBox><span style="color: Red">*</span>
    <br />
    <asp:RequiredFieldValidator ID="RFDtxtPrice" runat="server" ErrorMessage="Please Enter Price" Display="Dynamic"
    ControlToValidate="txtPrice" ForeColor="Red" ></asp:RequiredFieldValidator>
    </td>
    </tr>

    <tr style="height: 10px">
    <td style="width: 100; background-color: #e5e5e5">
    Ingredient
    </td>
    <td style="width: 200; background-color: #f7f7f7">
    <asp:TextBox ID="txtIngredient" runat="server" Width="200px" Height="19px"></asp:TextBox><span
    style="color: Red">*</span>
    <br />
    <asp:RequiredFieldValidator ID="RFDIngredient" runat="server" ErrorMessage="Please Enter Ingredient"
    ControlToValidate="txtIngredient" Display="Dynamic" ForeColor="Red" ></asp:RequiredFieldValidator>
    </td>
    </tr>

    <tr style="height: 10px">
    <td style="width: 100; background-color: #e5e5e5">
    Use
    </td>
    <td style="width: 200; background-color: #f7f7f7">
    <asp:TextBox ID="txtUse" runat="server" Width="200px" Height="19px"></asp:TextBox><span style="color: Red">*</span>
    <br />
    <asp:RequiredFieldValidator ID="RFDUse" runat="server" ErrorMessage="Please Enter Use"
    ControlToValidate="txtUse" Display="Dynamic" ForeColor="Red" ></asp:RequiredFieldValidator>
    </td>
    </tr>

    <tr style="height: 10px">
    <td colspan="2" align="center">
    <asp:Button ID="BtnSubmit" runat="server" Text="Submit" OnClick="BtnSubmit_Click" />
    </td>
    </tr>
    </table>
    </ContentTemplate>
    </asp:UpdatePanel>


    </asp:Content>

    ---------------------------------------------------------------------- _--------------- cs ------------------------------------------------------using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Data;
    using System.Data.SqlClient;

    namespace TestApp
    {
    public partial class _Default : System.Web.UI.Page
    {
    protected void Page_Load(object sender, EventArgs e)
    {
    Session["UserId"] = 2;

    if (Session["UserId"] == null)
    {
    Response.Redirect("Login.aspx");
    }
    else
    {
    if(!IsPostBack)
    {
    PopulateBrand();
    PopulateProduct();
    }
    }
    }

    private void PopulateProduct()
    {
    try
    {


    DataSet ds = SqlHelpper.GetDataSet(CommandType.StoredProcedure, "Proc_SelecProduct", "Product", "PracticeConnectionString", null);

    if (ds != null)
    {
    DataTable dt = ds.Tables["Product"];

    if (dt.Rows.Count > 0)
    {
    ddlProduct.Items.Insert(0, "--Select Product--");

    foreach (DataRow dr in dt.Rows)
    {
    ListItem lt = new ListItem(dr["ProductName"].ToString(), dr["Id"].ToString());

    ddlProduct.Items.Add(lt);

    }
    }


    }

    }
    catch (Exception ex)
    {
    throw;
    }
    }

    private void PopulateBrand()
    {
    try
    {
    string Product = null;

    if (ddlProduct.SelectedIndex > 0)
    {
    Product = ddlProduct.SelectedItem.Value;

    }
    DataSet ds = SqlHelpper.GetDataSet(CommandType.StoredProcedure, "Proc_SelecBrand", "Product", "PracticeConnectionString",
    new SqlParameter("@ProductId", Product));


    if (ds != null)
    {
    ddlBrand.DataSource = ds;
    ddlBrand.DataTextField = "BrandName";
    ddlBrand.DataValueField = "Id";
    ddlBrand.DataBind();
    ddlBrand.Items.Insert(0, "--Select Brand--");
    }
    }
    catch (Exception ex)
    {
    throw;
    }


    }

    protected void ddlProduct_SelectedIndexChanged(object sender, EventArgs e)
    {
    try
    {
    PopulateBrand();
    }
    catch (Exception ex)
    {

    }
    }

    protected void BtnSubmit_Click(object sender, EventArgs e)
    {
    int count = SqlHelpper.ExecuteNonQuery(CommandType.StoredProcedure, "Proc_InsertBrandProductDetails", "PracticeConnectionString",
    new SqlParameter("@BrandId",ddlBrand.SelectedItem.Value),
    new SqlParameter("@price",txtPrice.Text),
    new SqlParameter("@ProductId",ddlProduct.SelectedItem.Value),
    new SqlParameter("@Ingri",txtIngredient.Text),
    new SqlParameter("@user",txtUse.Text));

    if (count > 0)
    {
    // Show message

    //clean control

    txtIngredient.Text = "";
    txtPrice.Text = "";
    txtUse.Text = "";
    ddlBrand.SelectedIndex = 0;
    ddlProduct.SelectedIndex = 0;
    LblMessage.Text = "BrandProduct details inserted sucessfully.";


    }
    }
    }
    }
    ---------------------------------------------------------------
    ----------------- Helper class created under app_code-------------------------------------

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Data;
    using System.Data.SqlClient;
    using System.Configuration;

    namespace TestApp
    {
    public class SqlHelpper
    {
    public static DataSet GetDataSet(CommandType cmdType, string cmdText, string tabName, string connString, params SqlParameter[] cmdParms)
    {
    string Constring = ConfigurationManager.ConnectionStrings[connString].ConnectionString;
    SqlConnection conn = new SqlConnection(Constring);
    SqlCommand cmd = new SqlCommand(cmdText, conn);
    cmd.CommandType = cmdType;

    if (cmdParms != null)
    {
    foreach(SqlParameter param in cmdParms)
    {

    cmd.Parameters.Add(param);
    }
    }

    DataSet ds = new DataSet();
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    try
    {
    da.Fill(ds, tabName);

    return ds;
    }
    catch
    {
    conn.Close();

    throw;
    }
    finally
    {
    conn.Close();
    }
    }

    public static int ExecuteNonQuery(CommandType cmdType, string cmdText,string connString,params SqlParameter[] cmdParms)
    {
    SqlConnection conn=null;
    int val=0;
    try
    {
    string Constring = ConfigurationManager.ConnectionStrings[connString].ConnectionString;

    conn = new SqlConnection(Constring);
    SqlCommand cmd = new SqlCommand();
    PrepareCommand(cmd, conn, null, cmdType, cmdText, cmdParms);
    val = cmd.ExecuteNonQuery();
    // cmd.Parameters.Clear();
    int cat = val;
    conn.Close();
    return val;

    }
    catch (Exception)
    {
    conn.Close();
    throw;
    //trans.Rollback();
    }
    finally
    {
    conn.Close();
    }
    }

    private static void PrepareCommand(SqlCommand cmd, SqlConnection conn, SqlTransaction trans, CommandType cmdType, string cmdText, SqlParameter[] cmdParms)
    {
    if (conn.State != ConnectionState.Open)
    conn.Open();
    cmd.Connection = conn;
    cmd.CommandText = cmdText;
    if (trans != null)
    cmd.Transaction = trans;

    cmd.CommandType = cmdType;

    if (cmdParms != null)
    {
    foreach (SqlParameter parm in cmdParms)
    cmd.Parameters.Add(parm);
    }
    }

    }
    }
  • #769844
    I guess you are using asp.net forms project. Any how N-tier architecture means, we are just deviding into layers instead of writing everything in a single class file.
    DAL -> Data access layer (your sql code manipulations will go here)
    BLL --> Business logic layer (its your service layer)
    UI --> Normal aspx pages

    To convert your code into n-tier --> first go to your solution explorer and create two seperate folders BLL and DAL. In those folders, add corresponding class files. In your BLL, add namespace of DAL layer and use object and call corresponding method.

  • #769875
    Hi,

    UI-Presentation Layer ( HTML,ASPX ,CSS)
    BI- Business Layer ( Logic to Implement Example : UserName and Password Validations)
    BI Layer to Split for Two Layers : BusinessLayer and BusinessServices (declare properties).
    DAL: Database Layer(DataBase Connection string,StoredProcedure,SQL Queries)

    Regards
    Sriram.R

  • #769880
    Hi

    Your Project N-tier to -? 3 tier or 2 tier

    Mostly People Design 3 Tier.

    PL- Presentation Layer (aspx and Design page )
    BI - Business Layer ( we can Implement our Business Logics)
    DAL : Database Layer we can access Database accessing Code we can implement here.

    same login MVC Pattern

    M -Model
    V -View
    C - Controller

    if you need convert share you code zip format

    Name : Dotnet Developer-2015
    Email Id : kumaraspcode2009@gmail.com

    'Not by might nor by power, but by my Spirit,' says the LORD Almighty.

  • #769948
    if you want to convert your project into n-tier layer then, you need to split your project into different tiers like
    1. UI- user interface layer which will have all the display related stuff like .aspx, .html..etc
    2. BIZ- business layer and this will have logical component which has the method logic, this can be devided into different layers in n-tier layer like reporting service layer, data validation layer..etc
    3. Reporting Service layer
    4. Validation Layer
    5. DataValidation layer
    6. DAL - data access layer which consist of DAN and DAT layers i.e DAN for only data retrieval operations and where DAT for data insertion/updation/deletion process stuff

    so, you need to create these many layer folders in your solution and move the relevant files to get the n-tier architecture.

    Thanks!
    B.Ramana Reddy


  • Sign In to post your comments