DATAGRIDENCAPSULATION
DATAGRIDENCAPSULATION
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace EmployeeApplication
{
// Properties
public string EmployeeId
{
get { return employeeId; }
set { employeeId = value; }
}