adiian

Stories kicked by adiian

Advanced Method Chaining(factorypattern.com)

submitted by adiianadiian(10) 2 years, 6 months ago

Method chaining is a simple technique that allows successive method invocation on the same object and in the same line. read more...

add a comment |category: |Views: 12

tags: another

Pattern focus: Decorator pattern(blog.lowendahl.net)

submitted by lowendahllowendahl(750) 2 years, 6 months ago

The decorator pattern is a pretty straightforward pattern that utilizes wrapping to extend existing classes with new functionality. It’s commonly used to apply cross-cutting concerns on top of business classes, which avoids mixing that up with the business logic. Frameworks like Spring.Net uses this pattern to apply it’s functionality to your classes. read more...

add a comment |category: |Views: 18

tags: another

Dependency Injection For Dummies(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 2 years, 6 months ago

The goal of this series is to introduce programming patterns and practices to developers who have little to no familiarity with them. This series does not intend to dive into the intricacies of each pattern / practice, but to give a brief overview that will (hopefully) inspire developers to learn more about them. read more...

add a comment |category: |Views: 617

tags: another

Using the Repository Pattern with the Command and DataMapper Patterns(rantdriven.com)

submitted by jeffrymorrisjeffrymorris(185) 2 years, 7 months ago

This post nearly completes the API defined in my earlier posts on the DataMapper pattern and the Command Pattern that shows a solution for executing queries against a remote service and mapping the results to POCO objects. read more...

add a comment |category: |Views: 130

tags: another