Beispiel #1
0
 public ResourceEducationService()
 {
     rl = new ResourceLanguageProficiency()
     {
         Language = "English", IsPrimary = true, SpeakProficiency = 5
     };
     lre = new List <ResourceEducation>();
     lre.Add((ResourceEducation)re.AutoPopulate());
 }
        public ResourceService()
        {
            re = new ResourceEducation();
            rl = new ResourceLanguageProficiency();
            lre = new List<ResourceEducation>();
            lre.Add((ResourceEducation)re.AutoPopulate());

            rdr = new ResourceDossierResponse();
            rdr.PastProjects = 1;
            rdr.ResourceHighestEducation = re;
            rdr.ResourcePrimaryLanguageProficiency = rl;
            Resource r = new Resource();

            rdr.ResourceProfile = (Resource)r.AutoPopulate();
        }
Beispiel #3
0
        public ResourceService()
        {
            re  = new ResourceEducation();
            rl  = new ResourceLanguageProficiency();
            lre = new List <ResourceEducation>();
            lre.Add((ResourceEducation)re.AutoPopulate());

            rdr = new ResourceDossierResponse();
            rdr.PastProjects                       = 1;
            rdr.ResourceHighestEducation           = re;
            rdr.ResourcePrimaryLanguageProficiency = rl;
            Resource r = new Resource();


            rdr.ResourceProfile = (Resource)r.AutoPopulate();
        }
 public ResourceEducationService()
 {
     rl = new ResourceLanguageProficiency() { Language = "English", IsPrimary = true, SpeakProficiency = 5 };
     lre = new List<ResourceEducation>();
     lre.Add((ResourceEducation)re.AutoPopulate());
 }
 /// This method will update resource language proficiency level.
 public bool UpdateResourceLanguageProficiency(ResourceLanguageProficiency resourceLanguageProficiency)
 {
     return true;
 }
 /// This method will add resource language proficiency details.
 public int AddResourceLanguageProficiency(ResourceLanguageProficiency resourceLanguageProficiency)
 {
     return 1;
 }
 /// This method will update resource language proficiency level.
 public bool UpdateResourceLanguageProficiency(ResourceLanguageProficiency resourceLanguageProficiency)
 {
     return(true);
 }
 /// This method will add resource language proficiency details.
 public int AddResourceLanguageProficiency(ResourceLanguageProficiency resourceLanguageProficiency)
 {
     return(1);
 }