17 lines
393 B
C#
17 lines
393 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;
|
|
using VOL.Entity.DomainModels.YD;
|
|
|
|
namespace VOL.Business.IRepositories
|
|
{
|
|
public interface ICurricularRepository : IDependency, IRepository<Y_Curricular>
|
|
{
|
|
}
|
|
}
|