Esempio n. 1
0
        private async Task <Employment> AddEmploymentAsync(HeadHunterEmployment headHunterEmployment)
        {
            var employment = new Employment
            {
                Code = headHunterEmployment.Id.ToLower(), Name = headHunterEmployment.Name
            };

            return(await _storageBroker.InsertEmploymentAsync(employment));
        }