Skip to content

Instantly share code, notes, and snippets.

View andrei-m-code's full-sized avatar
🐙
{...}

Andrei andrei-m-code

🐙
{...}
View GitHub Profile
@andrei-m-code
andrei-m-code / IBusinessRules.cs
Created June 17, 2016 13:26 — forked from lorddev/IBusinessRules.cs
Ideas on a business rules implementation
using System;
using System.Collections;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Devlord.Utilities
{
/// <summary>
/// Use for designing a business rule where conditions are evaluated and the actions are executed based on the evaluation.
/// Rules can be chained by setting the "Action" as another business rule.