public void Cnd_AddEmp(CndEmployee emp)
 {
     using (var context = new CndContext())
     {
         context.CndEmployees.Add(emp);
         context.SaveChanges();
     }
 }