Example #1
0
        public async Task <ActionResult> AddResidentToApartment(int apartmentId, int residentId)
        {
            await _apartmentService.AddResidentToApartment(apartmentId, residentId);

            return(Ok());
        }