The layered tag has no wiki summary.
5
votes
3answers
4k views
N-Tiered vs N-Layered architecture/design [closed]
What does it mean by N-Tiered and N-Layered architecture/design?
Is there any difference between N-Tiered and N-Layered architecture/design?
If yes, what is the difference?
8
votes
4answers
903 views
passing data in an ntier application
How do you pass data to layers in an n-tier application? I have mapped out 3 different methods.
A)
generic .net objects generic data tables, Hashtables, generic datasets, strings, ints etc...
then ...
5
votes
1answer
4k views
Magento layered navigation on custom product collection
I have been working on a custom module for Magento (ver. 1.8.0.0) that shows a list of related products of a certain product.
In order to achieve this I have created my own module by overwriting the ...
0
votes
2answers
4k views
Magento Layered Navigation Categories [closed]
I would like the user to be sent to the category landing page when the user clicks the category in layered navigation.
So instead of the user getting /category.html?cat=11, they would get ...
2
votes
3answers
170 views
programming language with granular method and property access
imagine something like this:
import class B.*;
interface A supports A.testSum
{
int sum( int a , int b ) access from B.calculator;
testSum() { Assert(sum(1,1)==2); }
........
class B ...
...
-1
votes
2answers
356 views
Unable to Get data from DA layer. What to do?
While dividing my C# application in layers, I have solved the problem of circular dependency among layers in the following way:
using System;
using System.Collections.Generic;
using System.Text;
...