Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Text;
- using SQLite;
- using CRUD.Views;
- using CRUD.Models;
- namespace CRUD.Models
- {
- public class Company
- {
- [PrimaryKey]
- public int Id { get; set; }
- public string Name { get; set; }
- public string Address { get; set; }
- public override string ToString()
- {
- return this.Name + "(" + this.Address + ")";
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement