using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_Core.BaseServices;
|
using WIDESEAWCS_Core.DB;
|
using WIDESEAWCS_Core.Seed;
|
using WIDESEAWCS_IRecordRepository;
|
using WIDESEAWCS_IRecordService;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_RecordService
|
{
|
public partial class LocationStatusChangeRecordSetvice : ServiceBase<Dt_LocationStatusChangeRecord, ILocationStatusChangeRecordRepository>, ILocationStatusChangeRecordSetvice
|
{
|
public LocationStatusChangeRecordSetvice(ILocationStatusChangeRecordRepository BaseDal) : base(BaseDal)
|
{
|
}
|
|
public ILocationStatusChangeRecordRepository Repository => BaseDal;
|
|
}
|
}
|