Ejemplo n.º 1
0
 /// <summary>
 /// Converts a TestLimitTypeModel Model into a TestLimitType Entity.
 /// </summary>
 /// <param name="entity">The TestLimitTypeModel Model to convert.</param>
 /// <param name="to">The TestLimitType Entity to which to convert.</param>
 /// <returns>An instance of TestLimitType representing the TestLimitTypeModel Model.</returns>
 private static TPO.DL.Models.TestLimitType Bind(TestLimitTypeModel model, TPO.DL.Models.TestLimitType to)
 {
     to.Code        = model.Code;
     to.Description = model.Description;
     to.SortOrder   = model.SortOrder;
     return(to);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Converts a TestLimitType Entity into a TestLimitTypeModel Model.
 /// </summary>
 /// <param name="entity">The TestLimitType Entity to convert.</param>
 /// <param name="to">The TestLimitTypeModel Model to which to convert.</param>
 /// <returns>An instance of TestLimitTypeModel representing the TestLimitType Entity.</returns>
 private static TestLimitTypeModel Bind(TPO.DL.Models.TestLimitType entity, TestLimitTypeModel to)
 {
     to.ID           = entity.ID;
     to.Code         = entity.Code;
     to.Description  = entity.Description;
     to.SortOrder    = entity.SortOrder;
     to.EnteredBy    = entity.EnteredBy;
     to.DateEntered  = entity.DateEntered;
     to.LastModified = entity.LastModified;
     to.ModifiedBy   = entity.ModifiedBy;
     return(to);
 }
Ejemplo n.º 3
0
        /// <summary>
        /// Gets a TestLimitTypeModel representing the TestLimitType record indicated by the provided ID.
        /// </summary>
        /// <param name="id">The ID of the TestLimitType record in the database.</param>
        /// <returns>A TestLimitTypeModel</returns>
        public TestLimitTypeModel GetTestLimitTypeModelByID(int id)
        {
            TestLimitTypeModel model = null;

            using (ReferenceDataRepository repo = new ReferenceDataRepository())
            {
                TPO.DL.Models.TestLimitType entity = repo.GetTestLimitTypeByID(id);
                if (entity != null)
                {
                    model = Bind(entity, new TestLimitTypeModel());
                }
            }

            return(model);
        }