Example #1
0
    public static TMSAttachmentDetails Get(System.Int64 atdAttachmentId)
    {
        DataSet              ds;
        Database             db;
        string               sqlCommand;
        DbCommand            dbCommand;
        TMSAttachmentDetails instance;


        instance = new TMSAttachmentDetails();

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

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

        instance.MapFrom(ds.Tables[0].Rows[0]);
        return(instance);
    }
Example #2
0
    public static TMSAttachmentDetails[] Search(System.Int64?atdAttachmentId, System.Int64?atdAdmissionId, System.String atdFileName, System.String atdFileType, System.DateTime?atdDate, System.Int32?atdStatus)
    {
        DataSet   ds;
        Database  db;
        string    sqlCommand;
        DbCommand dbCommand;


        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspTMSAttachmentDetails_SEARCH";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, atdAttachmentId, atdAdmissionId, atdFileName, atdFileType, atdDate, atdStatus);

        ds = db.ExecuteDataSet(dbCommand);
        ds.Tables[0].TableName = TABLE_NAME;
        return(TMSAttachmentDetails.MapFrom(ds));
    }
Example #3
0
    public static TMSAttachmentDetails[] MapFrom(DataSet ds)
    {
        List <TMSAttachmentDetails> objects;


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

        // 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_AttachmentDetails] in DataSet.");
        }

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

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

        // Return collection.
        return(objects.ToArray());
    }
Example #4
0
 public static TMSAttachmentDetails[] Search(TMSAttachmentDetails searchObject)
 {
     return(Search(searchObject.ATDAttachmentId, searchObject.ATDAdmissionId, searchObject.ATDFileName, searchObject.ATDFileType, searchObject.ATDDate, searchObject.ATDStatus));
 }
Example #5
0
 public static void Update(TMSAttachmentDetails tMSAttachmentDetails, DbTransaction transaction)
 {
     tMSAttachmentDetails.Update(transaction);
 }
Example #6
0
 public static void Update(TMSAttachmentDetails tMSAttachmentDetails)
 {
     tMSAttachmentDetails.Update();
 }
 public static void Update(TMSAttachmentDetails tMSAttachmentDetails, DbTransaction transaction)
 {
     tMSAttachmentDetails.Update(transaction);
 }
 public static void Update(TMSAttachmentDetails tMSAttachmentDetails)
 {
     tMSAttachmentDetails.Update();
 }
 public static TMSAttachmentDetails[] Search(TMSAttachmentDetails searchObject)
 {
     return Search ( searchObject.ATDAttachmentId, searchObject.ATDAdmissionId, searchObject.ATDFileName, searchObject.ATDFileType, searchObject.ATDDate, searchObject.ATDStatus);
 }
    public static TMSAttachmentDetails[] MapFrom(DataSet ds)
    {
        List<TMSAttachmentDetails> objects;

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

        // 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_AttachmentDetails] in DataSet.");

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

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

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

        instance = new TMSAttachmentDetails();

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

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

        instance.MapFrom( ds.Tables[0].Rows[0] );
        return instance;
    }