|
|
|
@ -1841,7 +1841,7 @@ namespace _24Hour.Controllers.Common
|
|
|
|
|
lawyersvc.legalAidPhoto = legalAidPhotos; |
|
|
|
|
lawyersvc.relationshipProofPhoto = relationshipProofPhotos; |
|
|
|
|
lawyersvc.otherPhoto = otherPhotos; |
|
|
|
|
|
|
|
|
|
lawyersvc.IsAssigned = false; |
|
|
|
|
_db.BeginTran(); |
|
|
|
|
var num = await _db.Insertable(lawyersvc).ExecuteCommandAsync(); |
|
|
|
|
_db.CommitTran(); |
|
|
|
@ -1860,6 +1860,7 @@ namespace _24Hour.Controllers.Common
|
|
|
|
|
svc.legalAidPhoto = legalAidPhotos; |
|
|
|
|
svc.relationshipProofPhoto = relationshipProofPhotos; |
|
|
|
|
svc.otherPhoto = otherPhotos; |
|
|
|
|
svc.IsAssigned = false; |
|
|
|
|
_db.BeginTran(); |
|
|
|
|
var num = await _db.Updateable(svc) |
|
|
|
|
.UpdateColumns(x => new |
|
|
|
|