using Microsoft.EntityFrameworkCore; using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.ViewModel.SYS; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Repository.SYS.Interface { public interface ILicenseLargeScreenTemplateRepository :IRepositoryBase, IRepositoryBaseById { Task CreateLicenseLargeScreenTemplateAsync(TSYS_LicenseLargeScreenTemplate entity); Task DeleteByLicenseCodeAsync(string licenseCode); Task DeleteLicenseLargeScreenTemplateAsync(string licenseCode, string largeScreenTemplateCode); Task> GetList(string licenseCode); } }