public JsonResult GetMetersForFlatPart(int flatPartId)
        {
            var model = new MeterModel();

            model.GetMetersForFlatPart(flatPartId);

            return(Json(model.Meters, JsonRequestBehavior.AllowGet));
        }