Architecture encompasses the process, artifacts and high-level structure of a solution.
2
votes
0answers
11 views
Ninject: Is it possible to have parent object in SingletonScope and child in TransientScope?
I have been racking my brain on and off with this for a few weeks now... What I currenlty have is this:
A bunch of *Service classes
All of these depend on different *Repository classes that access ...
2
votes
4answers
46 views
Should the view model match closer to view or model?
Let's say we have a view which has a view model as data context. It is binded to a property called Visible.
What type should the property be ?
Boolean (more model friendly, but forces the use of a ...
2
votes
0answers
52 views
other alternative to the “Main Form” idea for structuring the application
Most of questions I've read regarding winform applications have a form class as the main form that contains all application and call Application.Run with this main form
When the code in main form ...
0
votes
0answers
31 views
Is the mongodb-Java combination well accepted? [on hold]
We are in the process of build a back end for a data intensive mobile app and have been doing some research on well supported technologies. I find that there are not very many blogs/ cookbooks/ ...
0
votes
1answer
44 views
WPF Application Update Best Practices - Architectural Explanation
This question is not only applicable to WPF but other programming language as well but I will for my sake and other ask the experts in the house for professional advice.
I am starting an desktop ...
3
votes
0answers
16 views
Announcing your app from within a container (docker)
I asked this question at docker's IRC over the weekend but had to head off before I'd thought through the answers:
If I have a number of applications running in containers (let's, for the moment, ...
0
votes
0answers
5 views
Alternative of WCSF pattern
As we all know WCSF
has been obselete from MSDN and they are no more supporting or updating it.
My question is, Is there any latest alternate for this.
So that we can go ahead with the latest ...
2
votes
2answers
45 views
AngularJS - Which is better, $emit/$on or scope inheritance?
Say I got this following HTML structure:
<body ng-app="demo" ng-controller="RootCtrl">
<header>
<!-- Header Material -->
</header>
<main ...
-1
votes
1answer
31 views
Design approach for Server Client model
I have a scenario, where an application is sending the data using our defined API's using socket to our service(let's call it for now) which encrypt/decrypt packet , add more info and then send to ...
0
votes
0answers
37 views
What is the difference between an infrastructure layer vs. a framework layer? [on hold]
I would appreciate someone explain to me that what are the differences between an infrastructure layer and a framework layer in an N-Layer application design.
what kind of code goes to each of those ...
0
votes
0answers
19 views
What are the different components of a cms and its actual design workflow from a architect's viewpoint?
If you wanted to build a content management system that would have some state of the art features and design, how do you approach defining its components and which workflow would you use as an ...
3
votes
2answers
78 views
How much should I enforce the concept of entity and value object in DDD?
I am working on a C# project using DDD. I wrote some classes. Some fall into the entity category, other fall into the value objects category. My question is, how much work must, or should I have to do ...
1
vote
2answers
64 views
Is this a named pattern?
public class BanknoteDescriptor
{
public double Value { get; set; }
public string Currency { get; set; }
}
public class Banknote
{
private BanknoteDescriptor _description;
public ...
0
votes
1answer
34 views
Combining Composite and Template Pattern
I have three devices which have different Run() implementations and interfaces. These devices may contain other subsystem or may contain other devices.
I know that I should use Template and Composite ...
1
vote
2answers
112 views
What are the typical layers in an onion architecture?
I am currently studying the domain driven design, and try to apply it for a WPF project. I watched some tutorial videos, and read many articles, like :
Onion archicecture dependencies in the same ...