Ejemplo n.º 1
0
 public ScoreBoard(int userId, int userRoleId)
 {
     InitializeComponent();
     dbc             = new DropDownistBindClass();
     this.userId     = userId;
     this.userRoleId = userRoleId;
     dataaccess      = new DataAccess();
 }
Ejemplo n.º 2
0
 public Accuracy_Summary(int userId, int userRoleId, string productionDate)
 {
     this.userId         = userId;
     this.userRoleId     = userRoleId;
     this.productionDate = productionDate;
     dbc        = new DropDownistBindClass();
     dataaccess = new DataAccess();
     InitializeComponent();
 }
Ejemplo n.º 3
0
 public Efficiency_Summary(int userId, int userRoleId, string productionDate)
 {
     this.userId         = userId;
     this.userRoleId     = userRoleId;
     this.productionDate = Convert.ToDateTime(productionDate ?? DateTime.Now.ToString("MM/dd/yyyy"));
     dbc        = new DropDownistBindClass();
     dataaccess = new DataAccess();
     InitializeComponent();
 }