Account.MonthlyManagement.ViewModel.MonthlyModel.ToMonthly C# (CSharp) Method

ToMonthly() public method

public ToMonthly ( ) : Monthly
return Monthly
        public Monthly ToMonthly()
        {
            Monthly monthly = new Monthly()
            {
                ID = this.ID,
                Month = this.Month,
                Cost = this.Cost,
                Remark = this.Remark
            };

            return monthly;
        }