- More work on the citem localization, still early stages (updates to services and models).

--HG--
branch : dev
This commit is contained in:
Suha Can
2010-06-07 12:29:29 -07:00
parent 887439352d
commit 83db8e0b42
7 changed files with 70 additions and 1 deletions

View File

@@ -1,4 +1,10 @@
namespace Orchard.Core.Localization.Services {
using System.Collections.Generic;
using Orchard.Core.Localization.Models;
namespace Orchard.Core.Localization.Services {
public interface IContentItemLocalizationService : IDependency {
IEnumerable<Localized> Get();
Localized Get(int localizedId);
Localized GetLocalizationForCulture(int masterId, string cultureName);
}
}