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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Services/Ghra_GradeServices.cs

18 lines
531 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, Ghra_GradeDto, InsertGhra_GradeInput, EditGhra_GradeInput>, IGhra_GradeServices
{
private readonly IBaseRepository<Ghra_Grade> _dal;
public Ghra_GradeServices(IBaseRepository<Ghra_Grade> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}
}