22 lines
511 B
C#
22 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using OSS.Models;
|
|
namespace OSS.Repositories
|
|
{
|
|
public class ShareholderRepository
|
|
{
|
|
public CompanyShareholderExternal CreateShareholder()
|
|
{
|
|
var LCountry = new Countries();
|
|
|
|
var officeRepsoitory = new CompanyShareholderExternal
|
|
{
|
|
ListofCountries = LCountry.GetCountriesByName()
|
|
};
|
|
return officeRepsoitory;
|
|
}
|
|
}
|
|
|
|
} |