10 lines
163 B
C#
10 lines
163 B
C#
|
namespace LOC.Website.Common.Data
|
|||
|
{
|
|||
|
using Core.Data;
|
|||
|
|
|||
|
public interface INautilusRepositoryFactory
|
|||
|
{
|
|||
|
IRepository CreateRepository();
|
|||
|
}
|
|||
|
}
|