13 lines
265 B
C#
13 lines
265 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
using iPackage.Models.Entity;
|
|||
|
|
|
|||
|
|
namespace iPackage.Core.Web.Repositories
|
|||
|
|
{
|
|||
|
|
public interface IRepositoryWrapper
|
|||
|
|
{
|
|||
|
|
IBaseRepository<T> SetRepository<T>() where T : ApiEntity;
|
|||
|
|
}
|
|||
|
|
}
|