tiseza_oss_live/Repositories/InvestorRepository.cs

22 lines
512 B
C#

using OSS.Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace OSS.Models
{
public class InvestorRepository
{
public InvestorProfileExternal CreateCountry()
{
var LCountry = new Countries();
var officeRepsoitory = new InvestorProfileExternal
{
ListofCountries = LCountry.GetCountriesByName()
};
return officeRepsoitory;
}
}
}