private CountryDTO Map(tblCountry tbl) { var dto = new CountryDTO { MasterId = tbl.id, DateCreated = tbl.IM_DateCreated, DateLastUpdated = tbl.IM_DateLastUpdated, StatusId = tbl.IM_Status, Name = tbl.Name, Code = tbl.Code, Currency = tbl.Currency }; return dto; }
/// <summary> /// Deprecated Method for adding a new object to the tblCountry EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddTotblCountry(tblCountry tblCountry) { base.AddObject("tblCountry", tblCountry); }
/// <summary> /// Create a new tblCountry object. /// </summary> /// <param name="id">Initial value of the id property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="iM_DateCreated">Initial value of the IM_DateCreated property.</param> /// <param name="iM_DateLastUpdated">Initial value of the IM_DateLastUpdated property.</param> /// <param name="iM_Status">Initial value of the IM_Status property.</param> public static tblCountry CreatetblCountry(global::System.Guid id, global::System.String name, global::System.DateTime iM_DateCreated, global::System.DateTime iM_DateLastUpdated, global::System.Int32 iM_Status) { tblCountry tblCountry = new tblCountry(); tblCountry.id = id; tblCountry.Name = name; tblCountry.IM_DateCreated = iM_DateCreated; tblCountry.IM_DateLastUpdated = iM_DateLastUpdated; tblCountry.IM_Status = iM_Status; return tblCountry; }