public async Task <ActionResult> AddApartment([FromBody] AddApartmentRequest request)
        {
            var apartment = request.ToDto();
            await buildingManager.AddAppartment(apartment);

            return(Created(Request.Path, apartment.WrapResponse(Request.Path)));
        }