This is the class
public class Student
{
public string Name { get; set; }
public int Id { get; set; }
public Faculty FacultyName { get; set; }
public void hw()
{
System.Console.WriteLine("hw done by Student");
}
class many { }
}
and another
public class class StudentDTO{
public string Name { get; set; }
public int Id { get; set; }
public FacultyDTO FacultyName { get; set; }
}
For this i need A mapper method implementation can any one help please with out using AUTO MAPPER>