Click here to Skip to main content
15,891,473 members
Articles / Mobile Apps / Windows Mobile

Restaurant and Waiter project! (WPF - Windows Mobile)

Rate me:
Please Sign up or sign in to vote.
4.90/5 (77 votes)
22 Jan 2012Ms-PL2 min read 246.9K   89.2K   182  
Restaurant and Waiter project! (WPF - Windows Mobile)
using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;

namespace Waiter.Classes
{
    static class MessagesListClass
    {
        internal static string userNameNotValid = "The User Name is not valid.";

        internal static string passwordNotValid = "The Password is not valid.";

        internal static string noConnection = "Unable to connect to the server.";

        internal static string UserNotAllowed = "You are not allowed to login to this application.";

        internal static string UserNotValid= "Your User Name or Password is not valid.";

        internal static string ConnectionTestSucceed = "Test Succeed!";

        internal static string ConnectionTestFailed = "Unable to connect to the {0}";

        internal static string FieldIsEmpty = "{0} is mandatory.";

        internal static string ActionSucceed = "{0} Succeed!";

        internal static string ActionFailed = "{0} Failed!";

        internal static string UnhandleException = "Error";

        internal static string NoRowIsSelected = "No Row Is Selected!";

        internal static string SelectedTableIsOccupied = "Table : {0} is occupied by another order. Are you sure you want to select this table?";

        internal static string OrderIsLock="Order No : {0} is locked by another user. Please try again later.";

        internal static string OrderIsNotAvailable= "Order No : {0} is not available anymore.";

        internal static string ProductIsNotAvailable = "{0} is not available anymore.";

        internal static string ProductIsUneditable = "This row can not be {0} because it is uneditable.";

        internal static string OrderIsEmpty = "Order is Empty!";

        internal static string OrderCreatedSuccessfully = "This order successfully saved with the OrderNo: {0}";

        internal static string OrderEditedSuccessfully = "OrderNo: {0} Edited successfully.";

        internal static string NoTableIsSelected = "No table is selected!";
    }
}

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 Microsoft Public License (Ms-PL)


Written By
Software Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions