COA.EnterpriseServices/COA.EnterpriseServices.DataAccess/CreditorHelper.cs
2020-10-13 23:10:25 -04:00

16 lines
324 B
C#

using COA.EnterpriseServices.DataAccess.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace COA.EnterpriseServices.DataAccess
{
public class CreditorHelper
{
public Creditor GetCreditor(int id)
{
throw new NotImplementedException();
}
}
}