public ProjectLocation GetProjectDefByCode(string code) { var repo = RepositoryForServer <ProjectLocation> .GetInstance("iS3Db"); var result = (repo.context as CoreContext).ProjectLocation.Where(x => x.CODE == code).FirstOrDefault(); return(result); }
public List <ProjectLocation> GetProjectDefList() { var repo = RepositoryForServer <ProjectLocation> .GetInstance("iS3Db"); return(repo.RetrieveAll().Result); }