public async Task <object> GetMasjidById(string id)
        {
            var d = await _taqweemService
                    .MasjidGetByIdAsync(id);

            MasjidDTO returnObject = new MasjidDTO
            {
                Id                  = d.Id,
                Name                = d.Name,
                Town                = d.Town,
                Country             = d.Country,
                LastUpdate          = d.LastUpdate,
                Latitude            = d.Latitude,
                Longitude           = d.Longitude,
                Height              = d.Height,
                TimeZoneId          = d.TimeZoneId,
                JuristMethod        = d.JuristMethod,
                LadiesFacility      = d.LadiesFacility,
                JummahFacility      = d.JummahFacility,
                Contact             = d.Contact,
                Address             = d.Address,
                GeneralInfo         = d.GeneralInfo,
                MaghribAdhaanDelay  = d.MaghribAdhaanDelay,
                SalaahTimesType     = d.SalaahTimesType,
                IsSpecialDayEnabled = d.IsSpecialDayEnabled,
                IsPublicHolidaySpecialTimesEnabled = d.IsPublicHolidaySpecialTimesEnabled,
                SpecialDayNumber = d.SpecialDayNumber,
                TZTimeZone       = TZConvert.WindowsToIana(d.TimeZoneId)
            };

            return(returnObject);
        }