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.
19 lines
392 B
19 lines
392 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using PEIS.Repositories;
|
|
using PEIS.Repositories.Models;
|
|
using PEIS.Service.IService;
|
|
|
|
namespace PEIS.Service.Service
|
|
{
|
|
public class SampleService:Repository<Sample>,ISampleService
|
|
{
|
|
public SampleService(DbContext context) : base(context)
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|