This commit is contained in:
2020-10-13 20:56:53 -04:00
commit 3c6e421dbf
12 changed files with 559 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace COA.EnterpriseServices.DataAccess.EntityFramework.Entities
{
public class Creditor : IRecord
{
public int Id { get; set; }
}
}