Exemplo n.º 1
0
    public int SaveLifeData(string key2, ICollection <tbl_Life_General_Info> collection)
    {
        var entry = new tbl_Life_Master()
        {
            UUID = key2, tbl_Life_General_Info = collection
        };

        db.tbl_Life_Master.Add(entry);
        return(1);
    }
Exemplo n.º 2
0
    public int SaveCensusBatch(string key, ICollection <tbl_Life_Census> collection)
    {
        var entry = new tbl_Life_Master()
        {
            UUID = key, tbl_Life_Census = collection
        };

        db.tbl_Life_Master.Add(entry);
        return(1);
    }