Esempio n. 1
0
        public IActionResult UpdateThisTenant(int id, Tenant updatesForTenant)
        {
            updatesForTenant.Dob = DateTime.Today;
            var updatedTenants = _repo.UpdateThisTenant(id, updatesForTenant);

            return(Ok(updatedTenants));
        }