ATS.Data.Model.CodeTable.GetAll C# (CSharp) 메소드

GetAll() 공개 정적인 메소드

public static GetAll ( ) : IEnumerable
리턴 IEnumerable
        public static IEnumerable<CodeTable> GetAll()
        {
            using (var context = new ATSCEEntities())
            {
                return context.CodeTables.ToList();
            }
        }