public Table_1Controller()
 {
     this.db = new EFTable_1Repository();
 }
 public Table_1Controller(ITable_1Repository db)
 {
     this.db = db;
 }
 public HomeController(IUnitOfWork unitOfWork, IRepository <Table_1> table1, ITable_1Repository uowTable)
 {
     _unitOfWork = unitOfWork;
     _table1     = table1;
     _uowTable   = uowTable;
 }