Ejemplo n.º 1
0
        public static int GetCount(string whereClause)
        {
            tblMailSummary tblObj = new tblMailSummary();
            int            count  = tblObj.GetCount(whereClause);

            return(count);
        }
Ejemplo n.º 2
0
        public static int GetCount()
        {
            tblMailSummary tblObj = new tblMailSummary();
            int            count  = tblObj.GetCount();

            return(count);
        }
 public static bool Delete(Int32 id)
 {
     tblMailSummary tblObj = new tblMailSummary();
       int affectedRow = tblObj.DeleteTable(tblMailSummary.PRIMARYKEY_FIELD1 + " = " + id);
       if (affectedRow != 1)
       throw new Exception("Could not find entry with id: " + id);
       else
       return true;
 }
Ejemplo n.º 4
0
 public static BOMailSummary GetItem(Int32 id)
 {
     BOMailSummary itemObj = null;
     tblMailSummary tblObj = new tblMailSummary();
     DataTable dt = tblObj.GetAllData(tblMailSummary.PRIMARYKEY_FIELD1 + " = " + id);
     if (dt.Rows.Count > 1)
         throw new Exception("More than one row returned");
     if (dt.Rows.Count == 1)
         itemObj = FillDataRecord(dt.Rows[0]);
     return itemObj;
 }
Ejemplo n.º 5
0
        public static bool Delete(Int32 id)
        {
            tblMailSummary tblObj      = new tblMailSummary();
            int            affectedRow = tblObj.DeleteTable(tblMailSummary.PRIMARYKEY_FIELD1 + " = " + id);

            if (affectedRow != 1)
            {
                throw new Exception("Could not find entry with id: " + id);
            }
            else
            {
                return(true);
            }
        }
 public static BOMailSummaryList GetAllList(int startIndex, int length, string whereClause)
 {
     BOMailSummaryList itemObjs = null;
       tblMailSummary tblObj = new tblMailSummary();
       DataTable dt = tblObj.GetAllData(startIndex, length, whereClause, null);
       if (dt.Rows.Count > 0)
       {
       itemObjs = new BOMailSummaryList();
       foreach(DataRow dr in dt.Rows)
       {
           itemObjs.Add(FillDataRecord(dr));
       }
       }
       return itemObjs;
 }
 public static BOMailSummaryList GetAllList()
 {
     BOMailSummaryList itemObjs = null;
       tblMailSummary tblObj = new tblMailSummary();
       DataTable dt = tblObj.GetAllData();
       if (dt.Rows.Count > 0)
       {
       itemObjs = new BOMailSummaryList();
       foreach(DataRow dr in dt.Rows)
       {
           itemObjs.Add(FillDataRecord(dr));
       }
       }
       return itemObjs;
 }
Ejemplo n.º 8
0
        public static BOMailSummaryList GetAllList(int startIndex, int length, string whereClause)
        {
            BOMailSummaryList itemObjs = null;
            tblMailSummary    tblObj   = new tblMailSummary();
            DataTable         dt       = tblObj.GetAllData(startIndex, length, whereClause, null);

            if (dt.Rows.Count > 0)
            {
                itemObjs = new BOMailSummaryList();
                foreach (DataRow dr in dt.Rows)
                {
                    itemObjs.Add(FillDataRecord(dr));
                }
            }
            return(itemObjs);
        }
Ejemplo n.º 9
0
        public static BOMailSummaryList GetAllList()
        {
            BOMailSummaryList itemObjs = null;
            tblMailSummary    tblObj   = new tblMailSummary();
            DataTable         dt       = tblObj.GetAllData();

            if (dt.Rows.Count > 0)
            {
                itemObjs = new BOMailSummaryList();
                foreach (DataRow dr in dt.Rows)
                {
                    itemObjs.Add(FillDataRecord(dr));
                }
            }
            return(itemObjs);
        }
Ejemplo n.º 10
0
        public static BOMailSummary GetItem(Int32 id)
        {
            BOMailSummary  itemObj = null;
            tblMailSummary tblObj  = new tblMailSummary();
            DataTable      dt      = tblObj.GetAllData(tblMailSummary.PRIMARYKEY_FIELD1 + " = " + id);

            if (dt.Rows.Count > 1)
            {
                throw new Exception("More than one row returned");
            }
            if (dt.Rows.Count == 1)
            {
                itemObj = FillDataRecord(dt.Rows[0]);
            }
            return(itemObj);
        }
Ejemplo n.º 11
0
        public static int Save(BOMailSummaryList entryList, bool adding)
        {
            tblMailSummary tblObj = new tblMailSummary();
            DataTable      dt     = tblObj.Table();
            int            i      = 0;

            foreach (BOMailSummary entry in entryList)
            {
                DataRow newRow = tblObj.Table().NewRow();

                newRow[tblMailSummary.TOEMPLOYEEID_FIELD]   = entry.ToEmployeeID;
                newRow[tblMailSummary.CCEMPLOYEEID_FIELD]   = entry.CCEmployeeID;
                newRow[tblMailSummary.FROMEMPLOYEEID_FIELD] = entry.FromEmployeeID;
                newRow[tblMailSummary.MESSAGEBODY_FIELD]    = entry.MessageBody;
                newRow[tblMailSummary.MAILSUBJECT_FIELD]    = entry.MailSubject;
                if (entry.CreatedOn.Equals(new DateTime()))
                {
                    newRow[tblMailSummary.CREATEDON_FIELD] = DBNull.Value;
                }
                else
                {
                    newRow[tblMailSummary.CREATEDON_FIELD] = entry.CreatedOn;
                }
                newRow[tblMailSummary.CREATEDBYID_FIELD] = entry.CreatedByID;
                if (entry.ModifiedOn.Equals(new DateTime()))
                {
                    newRow[tblMailSummary.MODIFIEDON_FIELD] = DBNull.Value;
                }
                else
                {
                    newRow[tblMailSummary.MODIFIEDON_FIELD] = entry.ModifiedOn;
                }
                newRow[tblMailSummary.MODIFIEDBYID_FIELD] = entry.ModifiedByID;

                dt.Rows.Add(newRow);
                i++;
            }

            //if(adding): Commented out at the moment. KS 28th Aug 2012
            return(tblObj.AddToTable(dt));
            //else
            //return tblObj.UpdateTable(dt);
        }
Ejemplo n.º 12
0
        public static int Save(BOMailSummary entry, bool adding)
        {
            tblMailSummary tblObj = new tblMailSummary();
            DataRow        newRow = tblObj.Table().NewRow();

            newRow[tblMailSummary.MAILID_FIELD]         = entry.MailID;
            newRow[tblMailSummary.TOEMPLOYEEID_FIELD]   = entry.ToEmployeeID;
            newRow[tblMailSummary.CCEMPLOYEEID_FIELD]   = entry.CCEmployeeID;
            newRow[tblMailSummary.FROMEMPLOYEEID_FIELD] = entry.FromEmployeeID;
            newRow[tblMailSummary.MESSAGEBODY_FIELD]    = entry.MessageBody;
            newRow[tblMailSummary.MAILSUBJECT_FIELD]    = entry.MailSubject;
            if (entry.CreatedOn.Equals(new DateTime()))
            {
                newRow[tblMailSummary.CREATEDON_FIELD] = DBNull.Value;
            }
            else
            {
                newRow[tblMailSummary.CREATEDON_FIELD] = entry.CreatedOn;
            }
            newRow[tblMailSummary.CREATEDBYID_FIELD] = entry.CreatedByID;
            if (entry.ModifiedOn.Equals(new DateTime()))
            {
                newRow[tblMailSummary.MODIFIEDON_FIELD] = DBNull.Value;
            }
            else
            {
                newRow[tblMailSummary.MODIFIEDON_FIELD] = entry.ModifiedOn;
            }
            newRow[tblMailSummary.MODIFIEDBYID_FIELD] = entry.ModifiedByID;

            if (adding)
            {
                return(tblObj.AddToTable(newRow));
            }
            else
            {
                return(tblObj.UpdateTable(newRow));
            }
        }
 public static int GetCount(string whereClause)
 {
     tblMailSummary tblObj = new tblMailSummary();
       int count = tblObj.GetCount(whereClause);
       return count;
 }
 public static int GetCount()
 {
     tblMailSummary tblObj = new tblMailSummary();
       int count = tblObj.GetCount();
       return count;
 }
        public static int Save(BOMailSummaryList entryList, bool adding)
        {
            tblMailSummary tblObj = new tblMailSummary();
              DataTable dt = tblObj.Table();
              int i = 0;

              foreach(BOMailSummary entry in entryList)
              {
              DataRow newRow = tblObj.Table().NewRow();

              newRow[tblMailSummary.TOEMPLOYEEID_FIELD] = entry.ToEmployeeID;
              newRow[tblMailSummary.CCEMPLOYEEID_FIELD] = entry.CCEmployeeID;
              newRow[tblMailSummary.FROMEMPLOYEEID_FIELD] = entry.FromEmployeeID;
              newRow[tblMailSummary.MESSAGEBODY_FIELD] = entry.MessageBody;
              newRow[tblMailSummary.MAILSUBJECT_FIELD] = entry.MailSubject;
              if(entry.CreatedOn.Equals(new DateTime()))
              newRow[tblMailSummary.CREATEDON_FIELD] = DBNull.Value;
              else
              newRow[tblMailSummary.CREATEDON_FIELD] = entry.CreatedOn;
              newRow[tblMailSummary.CREATEDBYID_FIELD] = entry.CreatedByID;
              if(entry.ModifiedOn.Equals(new DateTime()))
              newRow[tblMailSummary.MODIFIEDON_FIELD] = DBNull.Value;
              else
              newRow[tblMailSummary.MODIFIEDON_FIELD] = entry.ModifiedOn;
              newRow[tblMailSummary.MODIFIEDBYID_FIELD] = entry.ModifiedByID;

              dt.Rows.Add(newRow);
              i++;
              }

              //if(adding): Commented out at the moment. KS 28th Aug 2012
              return tblObj.AddToTable(dt);
              //else
              //return tblObj.UpdateTable(dt);
        }
        public static int Save(BOMailSummary entry, bool adding)
        {
            tblMailSummary tblObj = new tblMailSummary();
              DataRow newRow = tblObj.Table().NewRow();

              newRow[tblMailSummary.MAILID_FIELD] = entry.MailID;
              newRow[tblMailSummary.TOEMPLOYEEID_FIELD] = entry.ToEmployeeID;
              newRow[tblMailSummary.CCEMPLOYEEID_FIELD] = entry.CCEmployeeID;
              newRow[tblMailSummary.FROMEMPLOYEEID_FIELD] = entry.FromEmployeeID;
              newRow[tblMailSummary.MESSAGEBODY_FIELD] = entry.MessageBody;
              newRow[tblMailSummary.MAILSUBJECT_FIELD] = entry.MailSubject;
              if(entry.CreatedOn.Equals(new DateTime()))
                  newRow[tblMailSummary.CREATEDON_FIELD] = DBNull.Value;
              else
                  newRow[tblMailSummary.CREATEDON_FIELD] = entry.CreatedOn;
              newRow[tblMailSummary.CREATEDBYID_FIELD] = entry.CreatedByID;
              if(entry.ModifiedOn.Equals(new DateTime()))
                  newRow[tblMailSummary.MODIFIEDON_FIELD] = DBNull.Value;
              else
                  newRow[tblMailSummary.MODIFIEDON_FIELD] = entry.ModifiedOn;
              newRow[tblMailSummary.MODIFIEDBYID_FIELD] = entry.ModifiedByID;

              if(adding)
              return tblObj.AddToTable(newRow);
              else
              return tblObj.UpdateTable(newRow);
        }