Exemplo n.º 1
0
	    public void Insert(int IdReport,string ThamSo,string GtriThamSo,string TrinhKy)
	    {
		    BThamsoBaocao item = new BThamsoBaocao();
		    
            item.IdReport = IdReport;
            
            item.ThamSo = ThamSo;
            
            item.GtriThamSo = GtriThamSo;
            
            item.TrinhKy = TrinhKy;
            
	    
		    item.Save(UserName);
	    }
Exemplo n.º 2
0
	    public void Update(int IdReport,string ThamSo,string GtriThamSo,string TrinhKy)
	    {
		    BThamsoBaocao item = new BThamsoBaocao();
	        item.MarkOld();
	        item.IsLoaded = true;
		    
			item.IdReport = IdReport;
				
			item.ThamSo = ThamSo;
				
			item.GtriThamSo = GtriThamSo;
				
			item.TrinhKy = TrinhKy;
				
	        item.Save(UserName);
	    }