Exemplo n.º 1
0
    public static TMSOtherDepartment Get(System.Int64 dpscDepartmentId)
    {
        DataSet            ds;
        Database           db;
        string             sqlCommand;
        DbCommand          dbCommand;
        TMSOtherDepartment instance;


        instance = new TMSOtherDepartment();

        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSOtherDepartment_SELECT";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, dpscDepartmentId);

        // Get results.
        ds = db.ExecuteDataSet(dbCommand);
        // Verification.
        if (ds == null || ds.Tables[0].Rows.Count == 0) //throw new ApplicationException("Could not get TMSOtherDepartment ID:" + dpscDepartmentId.ToString()+ " from Database.");
        // Return results.
        {
            return(null);
        }
        ds.Tables[0].TableName = TABLE_NAME;

        instance.MapFrom(ds.Tables[0].Rows[0]);
        return(instance);
    }
Exemplo n.º 2
0
    public static TMSOtherDepartment[] Search(System.Int64?dpscDepartmentId, System.String dpScDepartmentName, System.String dpScDepartmentType, System.DateTime?dpDate, System.Int32?dpStatus)
    {
        DataSet   ds;
        Database  db;
        string    sqlCommand;
        DbCommand dbCommand;


        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSOtherDepartment_SEARCH";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, dpscDepartmentId, dpScDepartmentName, dpScDepartmentType, dpDate, dpStatus);

        ds = db.ExecuteDataSet(dbCommand);
        ds.Tables[0].TableName = TABLE_NAME;
        return(TMSOtherDepartment.MapFrom(ds));
    }
Exemplo n.º 3
0
    public static TMSOtherDepartment[] MapFrom(DataSet ds)
    {
        List <TMSOtherDepartment> objects;


        // Initialise Collection.
        objects = new List <TMSOtherDepartment>();

        // Validation.
        if (ds == null)
        {
            throw new ApplicationException("Cannot map to dataset null.");
        }
        else if (ds.Tables[TABLE_NAME].Rows.Count == 0)
        {
            return(objects.ToArray());
        }

        if (ds.Tables[TABLE_NAME] == null)
        {
            throw new ApplicationException("Cannot find table [dbo].[TMS_OtherDepartment] in DataSet.");
        }

        if (ds.Tables[TABLE_NAME].Rows.Count < 1)
        {
            throw new ApplicationException("Table [dbo].[TMS_OtherDepartment] is empty.");
        }

        // Map DataSet to Instance.
        foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows)
        {
            TMSOtherDepartment instance = new TMSOtherDepartment();
            instance.MapFrom(dr);
            objects.Add(instance);
        }

        // Return collection.
        return(objects.ToArray());
    }
 public static void Update(TMSOtherDepartment tMSOtherDepartment, DbTransaction transaction)
 {
     tMSOtherDepartment.Update(transaction);
 }
 public static void Update(TMSOtherDepartment tMSOtherDepartment)
 {
     tMSOtherDepartment.Update();
 }
 public static TMSOtherDepartment[] Search(TMSOtherDepartment searchObject)
 {
     return Search ( searchObject.DPSCDepartmentId, searchObject.DPScDepartmentName, searchObject.DPScDepartmentType, searchObject.DPDate, searchObject.DpStatus);
 }
    public static TMSOtherDepartment[] MapFrom(DataSet ds)
    {
        List<TMSOtherDepartment> objects;

        // Initialise Collection.
        objects = new List<TMSOtherDepartment>();

        // Validation.
        if (ds == null)
        throw new ApplicationException("Cannot map to dataset null.");
        else if (ds.Tables[TABLE_NAME].Rows.Count == 0)
        return objects.ToArray();

        if (ds.Tables[TABLE_NAME] == null)
        throw new ApplicationException("Cannot find table [dbo].[TMS_OtherDepartment] in DataSet.");

        if (ds.Tables[TABLE_NAME].Rows.Count < 1)
        throw new ApplicationException("Table [dbo].[TMS_OtherDepartment] is empty.");

        // Map DataSet to Instance.
        foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows)
        {
            TMSOtherDepartment instance = new TMSOtherDepartment();
            instance.MapFrom(dr);
            objects.Add(instance);
        }

        // Return collection.
        return objects.ToArray();
    }
    public static TMSOtherDepartment Get(System.Int64 dpscDepartmentId)
    {
        DataSet ds;
        Database db;
        string sqlCommand;
        DbCommand dbCommand;
        TMSOtherDepartment instance;

        instance = new TMSOtherDepartment();

        db = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSOtherDepartment_SELECT";
        dbCommand = db.GetStoredProcCommand(sqlCommand, dpscDepartmentId);

        // Get results.
        ds = db.ExecuteDataSet(dbCommand);
        // Verification.
        if (ds == null || ds.Tables[0].Rows.Count == 0) //throw new ApplicationException("Could not get TMSOtherDepartment ID:" + dpscDepartmentId.ToString()+ " from Database.");
            // Return results.
            return null;
        ds.Tables[0].TableName = TABLE_NAME;

        instance.MapFrom( ds.Tables[0].Rows[0] );
        return instance;
    }
 public static DataSet GetSearch(TMSOtherDepartment searchObject)
 {
     return(GetSearch(searchObject.DPSCDepartmentId, searchObject.DPScDepartmentName, searchObject.DPScDepartmentType, searchObject.DPDate, searchObject.DpStatus));
 }
Exemplo n.º 10
0
 public static void Update(TMSOtherDepartment tMSOtherDepartment, DbTransaction transaction)
 {
     tMSOtherDepartment.Update(transaction);
 }
Exemplo n.º 11
0
 public static void Update(TMSOtherDepartment tMSOtherDepartment)
 {
     tMSOtherDepartment.Update();
 }