-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cs
30 lines (27 loc) · 1.11 KB
/
test.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
public virtual ActionResult Edit(int? id, int editMode)
{
ViewModel vm = new ViewModel();
try
{
if (id.HasValue)
{
rvm = _requestMapper.GetRequestItem(_operationsService.GetRequestItem(id.Value));
if(editMode == 0) return View("View", rvm);
}
else
{
rvm.Producers = _adminService.GetPersonsQueryable();
rvm.Files = _adminService.GetFilesQueryable();
rvm.ExpirationPeriods = _adminService.GetConfigurationQueryable("FechaVencimiento");
ViewBag.Title = Resources.Request.EDIT_TITLE_DELIVERY;
}
return View(rvm);
}
catch (Exception ex)
{
string iError = LogHelper.LogError(ex, "Applicant", "Edit");
vm.Message = string.Format(Resources.Global.TRY_CATCH_ERROR_MESSAGE, iError);
vm.Type = MessageModel.MessageType.Error;
return View(vm);
}
}