Presentation Logic.cs

                Never    
C#
       
using RJK.Framework;
using Ucar.Ucar.BusinessLogic.W14;
using Ucar.Ucar.ViewModels.W14;

namespace Ucar.Ucar.PresentationLogic.W14
{
    public class UW14003PresentationLogic : BasePresentationLogic
    {

        private UW14003BussinessLogic businessLogic;

        public UW14003PresentationLogic()
        {
            this.businessLogic = new UW14003BussinessLogic();
        }

        [PresentationLogic(TransactionMode.ReadOnly)]
        public UW14003ViewModel Ready()
        {

            UW14003ViewModel ret = new UW14003ViewModel
            {
                PasswordChangeList = businessLogic.GetPW14PasswordChangesInfo()
            };
            return ret;
        }
    }
}

Raw Text