public bool ThemCongtac(Congtac ct)
 {
     try
     {
         ql.Congtacs.Add(ct);
         return ql.SaveChanges() > 0 ? true : false;
     }
     catch(Exception e)
     {
         Console.WriteLine(e.Message);
     }
     return false;
 }
 public bool SuaCongtac(Congtac ct)
 {
     try
     {
         Congtac c = ql.Congtacs.SingleOrDefault(t => t.Stt == ct.Stt);
         c.Madonvi = ct.Madonvi;
         c.MaNgach = ct.MaNgach;
         c.Machucvu = ct.Machucvu;
         c.Ngaynhanchuc = ct.Ngaynhanchuc;
         c.Ngaytuchuc = ct.Ngaytuchuc;
         ql.Entry(c).State = System.Data.Entity.EntityState.Modified; //cập nhật dữ liệu
         return ql.SaveChanges() > 0 ? true : false;
     }
     catch (Exception e)
     {
         Console.WriteLine(e.Message);
     }
     return false;
 }