You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
395 B
C#

using Estsh.Core.Base;
using Estsh.Core.Extensions;
using Estsh.Core.Repositories;
namespace Estsh.Core.Services
{
public abstract class BaseService<T> : IBaseService<T>, IDependency where T : BaseEntity
{
protected IBaseRepository<T> repository;
protected BaseService(IBaseRepository<T> iRepository)
{
repository = iRepository;
}
}
}