You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
472 B
18 lines
472 B
|
|
using Tiobon.Core.IServices;
|
|
using Tiobon.Core.Model.Models;
|
|
using Tiobon.Core.Services.BASE;
|
|
using Tiobon.Core.IRepository.Base;
|
|
|
|
namespace Tiobon.Core.Services
|
|
{
|
|
public class Ghra_GradeServices : BaseServices<Ghra_Grade>, IGhra_GradeServices
|
|
{
|
|
private readonly IBaseRepository<Ghra_Grade> _dal;
|
|
public Ghra_GradeServices(IBaseRepository<Ghra_Grade> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
}
|
|
}
|
|
} |