Improve search page

This commit is contained in:
Peter Maquiran
2021-01-19 16:44:39 +01:00
parent 4a5395be94
commit d2fc8338b3
20 changed files with 421 additions and 101 deletions
@@ -0,0 +1,7 @@
import { OrganicEntity } from './organic-entity.model';
describe('OrganicEntity', () => {
it('should create an instance', () => {
expect(new OrganicEntity()).toBeTruthy();
});
});
+4
View File
@@ -0,0 +1,4 @@
export class OrganicEntity {
Code: number;
Description: string;
}