init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.BusinessLogic.HelperClasses;
|
||||
|
||||
namespace Kreta.Web.Areas.Beiratkozas.Models
|
||||
{
|
||||
public class FeladatellatasiHelyekModel
|
||||
{
|
||||
public List<FeladatellatasiHelyModel> Adatok { get; set; }
|
||||
|
||||
public class FeladatellatasiHelyModel
|
||||
{
|
||||
public int FeladatellatasihelyId { get; set; }
|
||||
|
||||
public string FeladatellatasiHelyNev { get; set; }
|
||||
|
||||
public string FeladatellatasiHelyKod { get; set; }
|
||||
}
|
||||
|
||||
public static FeladatEllatasiHelyCO ConvertModelToCO(FeladatellatasiHelyModel model) => new FeladatEllatasiHelyCO
|
||||
{
|
||||
ID = model.FeladatellatasihelyId,
|
||||
KIRFeladatellatasiHelySorszama = model.FeladatellatasiHelyKod
|
||||
};
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue