init
This commit is contained in:
35
KretaWeb/Areas/UgyfelSzolgalat/Models/BejelentesModel.cs
Normal file
35
KretaWeb/Areas/UgyfelSzolgalat/Models/BejelentesModel.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using Kreta.BusinessLogic.HelperClasses;
|
||||
|
||||
namespace Kreta.Web.Areas.UgyfelSzolgalat.Models
|
||||
{
|
||||
public class BejelentesModel : BejelentesBaseModel
|
||||
{
|
||||
public BejelentesModel(
|
||||
string fejlec,
|
||||
int requestTypeId,
|
||||
int needUserAndBrowserInformation,
|
||||
bool isFileUploadEnabled,
|
||||
int attachmentMaxFileSizeInBytes,
|
||||
string[] allowedFileExtensionArray,
|
||||
string textBoxTitle,
|
||||
string textAreaTitle,
|
||||
string textBox,
|
||||
IntezmenyCO intezmenyAdatok) : base(fejlec, requestTypeId, needUserAndBrowserInformation, isFileUploadEnabled)
|
||||
{
|
||||
TextBoxTitle = textBoxTitle;
|
||||
TextAreaTitle = textAreaTitle;
|
||||
TextBox = textBox;
|
||||
IntezmenyAdatok = intezmenyAdatok;
|
||||
AttachmentMaxFileSizeInBytes = attachmentMaxFileSizeInBytes;
|
||||
AllowedFileExtensionArray = allowedFileExtensionArray;
|
||||
}
|
||||
|
||||
public string TextBoxTitle { get; set; }
|
||||
public string TextAreaTitle { get; set; }
|
||||
public string TextBox { get; set; }
|
||||
public string TextArea { get; set; }
|
||||
public IntezmenyCO IntezmenyAdatok { get; set; }
|
||||
public int AttachmentMaxFileSizeInBytes { get; set; }
|
||||
public string[] AllowedFileExtensionArray { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user