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.

30 lines
703 B
C#

using Dapper;
using Estsh.Core.Base;
using Estsh.Core.Dapper;
using Estsh.Core.Wms.IRepositories;
using Estsh.Core.Model.Result;
using Estsh.Core.Repositories;
using System.Collections;
using System.Data;
using System.Text;
using System.Security.Cryptography;
using System.Text.Json;
using Estsh.Core.Models;
using Newtonsoft.Json.Linq;
namespace Estsh.Core.Wms.Repositories
{
public class TestRepository : BaseRepository<BaseEntity>, ITestRepository
{
public TestRepository(DapperDbContext _dapperDbContext) : base(_dapperDbContext)
{
}
public List<SysBase> GetUser(string user)
{
throw new NotImplementedException();
}
}
}