public CustomerRequestCreate()
 {
     InitializeComponent();
     _projectBLL          = new ProjectBLL();
     _employeeBLL         = new EmployeeBLL();
     _customerBLL         = new CustomerBLL();
     _projectEmployeesBLL = new ProjectEmployeesBLL();
     _customerRequestBLL  = new CustomerRequestBLL();
 }
 public TaskTakeDown()
 {
     InitializeComponent();
     _projectBLL          = new ProjectBLL();
     _projectEmployeesBLL = new ProjectEmployeesBLL();
     _taskBLL             = new TasksBLL();
     ManagerID            = employee.EmployeeID;
     _customerRequestBLL  = new CustomerRequestBLL();
 }
 public CustomerRequestEvaluation()
 {
     InitializeComponent();
     _customerRequestBLL = new CustomerRequestBLL();
     _projectEmloyeesBLL = new ProjectEmployeesBLL();
 }