Click here to Skip to main content
15,881,248 members
Articles / Desktop Programming / WPF

A Silverlight Introduction for Line-of-Business Applications

Rate me:
Please Sign up or sign in to vote.
4.71/5 (15 votes)
30 Aug 2009CPOL18 min read 54.1K   660   56  
An introduction on Silverlight for developers of administrative applications. The article starts by explaining the basics of WPF and then delves deeper in the business-oriented aspects.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using System.Data;

namespace CarSelector.Web
{
    // NOTE: If you change the interface name "ICarService" here, you must also update the reference to "ICarService" in Web.config.
    [ServiceContract]
    public interface ICarService
    {
        [OperationContract]
        List<SimpleCar> GetCarsOverview();

        [OperationContract]
        Car GetCar(int carId);

        [OperationContract]
        bool UpdateCar(Car car);
    }
}

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 Code Project Open License (CPOL)


Written By
CEO TRI-S bvba, Cogenius bvba
Belgium Belgium
I'm working since 1999 in an IT environment: started developing in PROGRESS 4GL, then VB6 and am working since 2003 with C#. I'm currently transitioning to HTML5, CSS3 and JavaScript for the front-end development.
I started my own company (TRI-S) in 2007 and co-founded another one (Cogenius) in 2012.
Besides being a Microsoft Certified Professional Developer (MCPD) I'm also a Microsoft Certified Trainer (MCT) and am teaching .NET and JavaScript courses.

Comments and Discussions