unfinished progress

This commit is contained in:
2020-10-13 21:46:23 -04:00
parent e919026502
commit a2a22af7dd
7 changed files with 67 additions and 3 deletions

View 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)
{
}
}
}

View 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; }
}
}