public MainNotificationTemplateModel(NotificationArguments prmtrs, string link, NotificationEntityType entityType, string entityValue, int?branchId = null, int?committeeId = null)
 {
     Args        = prmtrs;
     Link        = link;
     EntityType  = entityType;
     EntityValue = entityValue;
     BranchId    = branchId;
     CommitteeId = committeeId;
 }
 public MainNotificationTemplateModel(NotificationArguments prmtrs)
 {
     Args = prmtrs;
 }