24 lines
792 B
C#
24 lines
792 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace DataModels
|
|||
|
{
|
|||
|
public class Customers
|
|||
|
{
|
|||
|
int id, idTrade, idUser;
|
|||
|
string name, nip, address, city;
|
|||
|
bool isDeleted;
|
|||
|
|
|||
|
public int Id { get => id; set => id = value; }
|
|||
|
public int IdTrade { get => idTrade; set => idTrade = value; }
|
|||
|
public int IdUser { get => idUser; set => idUser = value; }
|
|||
|
public string Name { get => name; set => name = value; }
|
|||
|
public string Nip { get => nip; set => nip = value; }
|
|||
|
public string Address { get => address; set => address = value; }
|
|||
|
public string City { get => city; set => city = value; }
|
|||
|
public bool IsDeleted { get => isDeleted; set => isDeleted = value; }
|
|||
|
}
|
|||
|
}
|