added controller stub. before changing idataaccess to abstract class
This commit is contained in:
@ -41,5 +41,10 @@ namespace COA.EnterpriseServices.DataAccess.Helpers
|
||||
{
|
||||
return creditorDataAccess.Invoke(d => d.Add(creditor));
|
||||
}
|
||||
|
||||
public bool SetCreditorStatus(int creditorId, string status)
|
||||
{
|
||||
return creditorDataAccess.Invoke(d => d.Update(creditorId, c => c.Status = status));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user