COA.EnterpriseServices/COA.EnterpriseServices.DataAccess/CreditorHelper.cs

16 lines
324 B
C#
Raw Normal View History

2020-10-14 01:46:23 +00:00
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)
{
2020-10-14 03:10:25 +00:00
throw new NotImplementedException();
2020-10-14 01:46:23 +00:00
}
}
}