-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSaveViewModel.cs
More file actions
54 lines (46 loc) · 1.2 KB
/
Copy pathSaveViewModel.cs
File metadata and controls
54 lines (46 loc) · 1.2 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Text;
namespace MBDEVproAPI.Common.ViewModels
{
public class SaveViewModel
{
/// <summary>
/// default constructor
/// </summary>
public SaveViewModel()
{
IsSaved = true;
}
/// <summary>
/// default constructor
/// <paramref name="refID">Ref ID of saved Record</paramref>
/// </summary>
public SaveViewModel(int? refID = null)
{
IsSaved = true;
RefID = refID;
}
/// <summary>
/// Error Constructor
/// </summary>
/// <param name="ErrMasg">Error Message</param>
public SaveViewModel(string errorMessage)
{
IsSaved = false;
ErrorMessage = errorMessage;
}
/// <summary>
/// Is record Saved
/// </summary>
public bool IsSaved { get; set; }
/// <summary>
/// Error Message
/// </summary>
public string ErrorMessage { get; set; }
/// <summary>
/// Saved Ref ID of Newly added record.
/// </summary>
public int? RefID { get; set; }
}
}