示例#1
0
    public Comptable GetById(int id)
    {
        Comptable entity;

        using (var db = new maderaEntities())
        {
            var query = from a in db.COMPTABLE where a.PERSONNEL_ID.Equals(id) select a;
            entity = new Comptable(query.First().NUMERO_POSTE, (int)query.First().PERSONNEL_ID, query.First().PERSONNEL_LOGIN, query.First().PERSONNEL_MDP, query.First().PERSONNEL_NOM,
                                   query.First().PERSONNEL_PRENOM, query.First().PERSONNEL_TOKEN);
        }
        return(entity);
    }
示例#2
0
    public void Add(Comptable comptable)
    {
        COMPTABLE entity = new COMPTABLE();

        entity.PERSONNEL_ID     = comptable.Id;
        entity.PERSONNEL_NOM    = comptable.Nom;
        entity.PERSONNEL_PRENOM = comptable.Prenom;
        entity.NUMERO_POSTE     = comptable.NumeroPoste;
        entity.PERSONNEL_LOGIN  = comptable.Login;
        entity.PERSONNEL_MDP    = comptable.Mdp;
        entity.PERSONNEL_TOKEN  = comptable.Token;

        using (var db = new maderaEntities())
        {
            db.COMPTABLE.Add(entity);
            db.SaveChanges();
        }
    }