unfinished progress
This commit is contained in:
15
COA.EnterpriseServices.DataAccess/CreditorHelper.cs
Normal file
15
COA.EnterpriseServices.DataAccess/CreditorHelper.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
13
COA.EnterpriseServices.DataAccess/Models/Creditor.cs
Normal file
13
COA.EnterpriseServices.DataAccess/Models/Creditor.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace COA.EnterpriseServices.DataAccess.Models
|
||||
{
|
||||
public class Creditor : IRecord
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string FirstName { get; set; }
|
||||
public string LastName { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user