Exemplo n.º 1
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();
        }
Exemplo n.º 2
0
 /// This method will update the existing resource education record.
 public bool UpdateResourceEducation(ResourceEducation ResourceEducation)
 {
     return true;
 }
Exemplo n.º 3
0
 /// This method will insert the Resource Education details in ResourceEducation Table.
 public int AddResourceEducation(ResourceEducation ResourceEducation)
 {
     return 1;
 }