16 lines
353 B
C#
16 lines
353 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
using VOL.Entity.DomainModels;
|
|
|
|
namespace VOL.Business.IRepositories
|
|
{
|
|
public interface IS_SchoolRepository : IDependency, IRepository<S_School>
|
|
{
|
|
}
|
|
}
|