root/trunk/eCard/eCardMVC/Platnosci.Core/Linq/Translation.cs @ 932

Wersja 927, 455 bytes (wprowadzona przez alina, 16 years temu)

re #215 zmiana nazwy plikow

Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using Platnosci.Core.Interface;
6
7namespace Platnosci.Core.Linq
8{
9    public class Translation: ITranslateManager
10    {
11        public string Translate(string className, string keyName)
12        {
13            string strName = HttpContext.GetGlobalResourceObject(className, keyName).ToString();
14            return strName;
15        }
16
17       
18    }
19}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.