예제 #1
0
        public Profile GetProfile()
        {
            var ListOfProfessions = professonRepository.GetAllProfessions();
            var ListOfContacts    = contactRepository.GetAllContacts();
            var ListOfSkills      = skillRepository.GetAllSkills();
            var aboutDescription  =
                "I am a resourceful individual with a very high work ethic committed to making valuable contributions in problem solving and achievement of team goals. I am a ife long learner with strong decision making skills. I also demonstrate excellent interpersonal, phone and digital communication skills.";
            var skillDescription =
                "I am primarily a backend developer, I have worked extensively with .NET and Node to build REST APIs, however, I have also done a good number of jobs on the front end with technologies such as react, angular, javascript and css. I am very confident in my ability to deliver with these technologies and can also pick up new technologies pretty fast";
            var profile = new Profile("Folusayo", "Abe", aboutDescription, skillDescription, ListOfSkills, ListOfProfessions, ListOfContacts);

            return(profile);
        }
예제 #2
0
 public IEnumerable <Profession> GetAllProfessions()
 {
     return(_professionRepository.GetAllProfessions());
 }