added helpers to DAM, additional methods
This commit is contained in:
@ -21,6 +21,8 @@ namespace COA.EnterpriseServices.DataAccess.QuickBase
|
||||
AddFieldMap<Creditor>(c => c.Status, 10);
|
||||
AddFieldMap<Creditor>(c => c.ClientFirstName, 20);
|
||||
AddFieldMap<Creditor>(c => c.ClientLastName, 21);
|
||||
AddFieldMap<Creditor>(c => c.CurrentCreditorProfileId, 90);
|
||||
AddFieldMap<Creditor>(c => c.OriginalCreditorProfileId, 91);
|
||||
|
||||
AddFieldMap<Client>(c => c.Id, 1);
|
||||
AddFieldMap<Client>(c => c.Created, 2);
|
||||
|
@ -17,11 +17,8 @@ namespace COA.EnterpriseServices.DataAccess.QuickBase
|
||||
|
||||
public bool Update(T item)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
var fieldData = GetFieldData(item);
|
||||
|
||||
public bool Update(int id, Action<T> update)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user