27 lines
670 B
C#
27 lines
670 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using DOAN.Model.MES.andon;
|
|
using DOAN.Model.MES.base_;
|
|
using DOAN.Service.JobKanban.IService;
|
|
using DOAN.Service.MES.andon.IService;
|
|
using Infrastructure.Attribute;
|
|
|
|
namespace DOAN.Service.JobKanban
|
|
{
|
|
|
|
[AppService(ServiceType = typeof(ILoginOrSetService), ServiceLifetime = LifeTime.Transient)]
|
|
public class LoginOrSetService : BaseService<BaseGroup>, ILoginOrSetService
|
|
{
|
|
|
|
public List<BaseGroup> GetGroupList()
|
|
{
|
|
return Context.Queryable<BaseGroup>().Where(it=>it.Status==1).ToList();
|
|
}
|
|
|
|
}
|
|
|
|
}
|