/// <summary> /// Creates a cEmployee object. It will be saved in permanent storage only /// on calling Save() /// </summary> /// <returns>cEmployee object</returns> public static cEmployee Create() { cEmployee oObj = new cEmployee(); SecurityCheck((int)enEmployee_Action.Create); // Create an object in memory, will be saved to storage on calling Save() oObj.m_bCreating = true; oObj.m_bInvalid = false; return(oObj); }
/// <summary> /// Ensures that an object with the specified name exists, while creating other properties are set to their default values /// </summary> /// <param name="i_sName">Name</param> /// <returns>cEmployee object</returns> public static cEmployee CreateIfRequiredAndGet(string i_sName) { cEmployee oObj = cEmployee.Get_Name(i_sName); if (oObj == null) { oObj = cEmployee.Create(); oObj.sName = i_sName; oObj.Save(); } return(oObj); }
/// <summary> /// Finds and return cEmployee objects matching the specified criteria /// </summary> /// <param name="i_oFilter">Filter criteria (WHERE clause)</param> /// <returns>cEmployee objects</returns> public static List <cEmployee> Find(cFilter i_oFilter) { DataTable dt = Find_DataTable(i_oFilter, null); List <cEmployee> l = new List <cEmployee>(); cEmployee oObj; for (int i = 0; i < dt.Rows.Count; i++) { oObj = new cEmployee(); oObj.m_iID = Convert.ToInt32(dt.Rows[i]["iID"]); oObj.m_sName = dt.Rows[i]["sName"].ToString(); oObj.m_dtCreatedOn = Convert.ToDateTime(dt.Rows[i]["dtCreatedOn"]); oObj.m_dtLastUpdatedOn = Convert.ToDateTime(dt.Rows[i]["dtLastUpdatedOn"]); oObj.m_sEmployeeID = Convert.ToString(dt.Rows[i]["sEmployeeID"]); oObj.m_objEmpLogin.iObjectID = Convert.ToInt32(dt.Rows[i]["objEmpLogin"].ToString()); oObj.m_iUpdatedBy = Convert.ToInt32(dt.Rows[i]["iUpdatedBy"]); oObj.m_dtDOJ = Convert.ToDateTime(dt.Rows[i]["dtDOJ"]); oObj.m_bInvalid = false; l.Add(oObj); } return(l); }
using System;