tiseza_oss_live/Repositories/InvestorRepository.cs

22 lines
512 B
C#
Raw Normal View History

2025-11-15 11:14:31 +00:00
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;
}
}
}