Click here to Skip to main content
15,896,201 members
Articles / Web Development / HTML

Signum Framework Tutorials Part 2 – Southwind Logic

Rate me:
Please Sign up or sign in to vote.
4.45/5 (6 votes)
15 Nov 2012LGPL325 min read 31.5K   1K   22  
In this part, we will focus on writing business logic, LINQ queries and explain inheritance
#region usings
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using Signum.Utilities;
using Signum.Entities;
using Signum.Web.Properties;
using System.Web.Routing;
#endregion

namespace Signum.Web
{
    public abstract class BaseLine : TypeContext
    {
        protected BaseLine(Type type, object untypedValue, Context parent, string controlID, PropertyRoute propertyRoute)
            : base(parent, controlID, propertyRoute)
        {
            this.type = type;
            this.untypedValue = untypedValue; 
        }

        public string LabelText { get; set; }

        string labelClass = "sf-label-line";
        public string LabelClass
        {
            get { return labelClass; }
            set { labelClass = value; }
        }

        public readonly RouteValueDictionary LabelHtmlProps = new RouteValueDictionary();

        bool visible = true;
        public bool Visible
        {
            get { return visible; }
            set { visible = value; }
        }

        public bool hideIfNull = false;
        public bool HideIfNull
        {
            get { return hideIfNull; }
            set { hideIfNull = value; }
        }

        object untypedValue;
        public override object UntypedValue
        {
            get { return untypedValue; }
        }

        Type type;
        public override Type Type
        {
            get { return type; }
        }

        internal override TypeContext Clone(object newValue)
        {
            throw new InvalidOperationException();
        }
    }

    public static class RouteValueDictionaryExtensions
    {
        public static void AddCssClass(this RouteValueDictionary dic, string newClass)
        {
            object value;
            if (dic.TryGetValue("class", out value))
                dic["class"] = value + " " + newClass;
            else
                dic["class"] = newClass;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) Signum Software
Spain Spain
I'm Computer Scientist, one of the founders of Signum Software, and the lead developer behind Signum Framework.

www.signumframework.com

I love programming in C#, Linq, Compilers, Algorithms, Functional Programming, Computer Graphics, Maths...

Comments and Discussions