Upload to server
uploading
This commit is contained in:
42
omegapro/Omega/BasicsForms/frmCommon.cs
Normal file
42
omegapro/Omega/BasicsForms/frmCommon.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Datalib.DatabaseSpecific;
|
||||
using DocumentFormat.OpenXml;
|
||||
using DocumentFormat.OpenXml.Packaging;
|
||||
using DocumentFormat.OpenXml.Validation;
|
||||
using OpenXmlPowerTools;
|
||||
namespace Omega.BasicForms
|
||||
{
|
||||
public partial class frmCommon : DevExpress.XtraEditors.XtraForm
|
||||
{
|
||||
public DataAccessAdapter adapter = new DataAccessAdapter();
|
||||
public frmCommon()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public virtual void SaveRecord()
|
||||
{
|
||||
}
|
||||
|
||||
public virtual void DeleteRecord()
|
||||
{
|
||||
}
|
||||
|
||||
public virtual void BindingData()
|
||||
{
|
||||
}
|
||||
public virtual void ReBinding()
|
||||
{
|
||||
}
|
||||
|
||||
public virtual void NewRecord()
|
||||
{
|
||||
}
|
||||
|
||||
public virtual void LoadData()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user